/* CSS Document */

.form-header {
	text-align: center;
	margin-bottom: 2rem;
}

.form-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #667eea;
}

.form-title {
	font-size: 2rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.form-subtitle {
	color: #7f8c8d;
	font-size: 1.1rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-row {
	display: flex;
	gap: 1rem;
}

.form-row .form-group {
	flex: 1;
}

.form-label {
	display: block;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
	font-size: 1.0rem;
}

.form-label .required {
	color: #e74c3c;
	margin-left: 3px;
}

.form-input, .form-select, .form-textarea {
	width: 92%;
	padding: 0.6rem;
	border: 2px solid #e9ecef;
	border-radius: 10px;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	background-color:rgba(255,255,255,0.7) !important;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	transform: translateY(-1px);
}

.form-input.email { min-width:260px; }

.form-textarea {
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
}

.form-checkbox {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin: 1.5rem 0;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 10px;
	border: 1px solid #dee2e6;
}

.checkbox-input {
	width: 24px;
	height: 24px;
	accent-color: #667eea;
}

.checkbox-label {
	color: #495057;
	font-size: 1.1rem;
	line-height: 1.4;
}


.error-message {
	color: #e74c3c;
	font-size: 1.0rem;
	margin-top: 0.3rem;
	display: none;
}
