.form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.card {
	width: 100%;
	max-width: 600px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	padding: 16px;
	background: #ffffff;
	margin-left: auto;
	margin-right: auto;
}

.cardTitle {
	margin: 0 0 8px;
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 800;
	line-height: 1.2;
}

.cardText {
	color: #6b7280;
	margin: 0 0 16px;
}

input[type="text"], input[type="email"], input[type="password"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: transparent;
	color: #111827;
	outline: none;
	transition: border-color .15s, box-shadow .15s;
}

input::placeholder {
	color: #6b7280;
}

input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .22);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 0;
	border-radius: 10px;
	background: #E79B4A;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: transform .06s ease, filter .15s ease;
}

.btn:hover {
	background-color: #65BC56;
}

.formRow {
	display: flex;
	padding: 5px;
}

.formInputBox {
	
}

.formCaption {
	color: #6b7280;
	min-width: 200px;
}

.tableCaption {
	color: #6b7280;
}

.formText {
	
}

.formTextArea {
	min-height: 100px;
}

.formCheckBox {
	transform: scale(2);
	margin-left: 12px;
	margin-right: 20px;
}

.formRadioButton {
	transform: scale(2);
	margin-left: 12px;
	margin-right: 20px;
    accent-color: #1b44d8;
}

.formSelect {
	font-size: 16px;
	font-family: Hanken Grotesk, Sans-serif;
}

.formError {
	min-height: 40px;
	font-size: 20px;
	font-family: Hanken Grotesk, Sans-serif;
	color: #EF4F8B;
	background-color: #ffffff;
	border: 1 px solid #606060;
	border-radius: 10px;
	padding: 5px;
}

.textError {
	font-family: Hanken Grotesk, Sans-serif;
	font-size: 20px;
	color: #EF4F8B;
}

.waiting {
	cursor: wait;
}

.document {
	display: block;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.pdfContainer {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.pdf {
	width: 600px;
	height: 860px;
}

@media ( max-width : 900px) {
	.formRow {
		display: flex;
		flex-direction: column;
	}
	.formCaption {
		min-width: 0px;
	}
	.document {
		display: block;
		max-width: 320px;
	}
	.pdfContainer {
		width: 360px;
	}
	.pdf {
		width: 360px;
		height: 500px;
	}
}

.tabTable {
	border-spacing: 8px 0px;
	margin-left: -8px;
	overflow: hidden;
}

.tabNormal {
	background-color: #E79B4A;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 4px 4x;
	border: 0;
	border-radius: 4px;
}

.tabSelected {
	background-color: #65BC56;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 4px 4x;
	border: 0;
	border-radius: 4px;
}

.taba {
	color: #e0e0e0;
}

.taba:hover {
	color: #e0e0e0;
}

.tabaselected {
	color: #ffffff;
}

.tabaselected:hover {
	color: #ffffff;
}

