
.form-header h2 {
	font-size: 34px;
    font-weight: bold;
	margin-bottom: 15px;
	color: #ef0011;
    text-transform: uppercase; 
	text-align: center;
}
.form-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}
.form-body {
	padding: 25px 30px;
}
.form-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding-bottom: 20px;
	
}
.form-group:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.form-label {
	width: 150px;
	font-weight: 500;
	color: #333;
    font-size: 16px;
	padding-right: 10px;
	
	flex-shrink: 0;
}
.form-control-container {
	flex: 1;
}
 .required::after {
 content: '*';
 color: #e74c3c;
 margin-left: 4px;
}
.form-control {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	
	transition: border-color 0.3s;
}
.form-control:focus {
	outline: none;
	border-color: #4a6ee0;
}
.form-control.error {
	border-color: #e74c3c;
}
textarea.form-control {
	min-height: 100px;
	resize: vertical;
}
.captcha-container {
	display: flex;
	gap: 10px;

}
.captcha-input {
	flex: 1;
}
.captcha-code {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 40px;
	background: #f0f2f5;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 3px;
	color: #333;
	cursor: pointer;
	user-select: none;
	border: 1px solid #ddd;
}
.form-footer {
	margin-top: 20px;
	display: flex;
	gap: 15px;
    justify-content:center;
}
.btn {
	padding:5px 30px;
    
	border: none;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 18px;
}
.btn-primary {
	background:#ef0011;
	color: white;
}
.btn-primary:hover {
	background:#000;
}
.btn-secondary {
	background: #f0f2f5;
	color: #555;
}
.btn-secondary:hover {
	background: #e4e6e9;
}
.message {
	padding: 12px 15px;
	border-radius: 4px;
	margin-bottom: 20px;
	display: none;
    font-size: 16px;
	animation: fadeIn 0.5s ease;
}
.message.error {
	background: #ffeaea;
	color: #e74c3c;
	border-left: 4px solid #e74c3c;
}
.message.success {
	background: #e8f7ee;
	color: #ef0011;
	border-left: 4px solid #ef0011;
}
.message.info {
	background: #e8f4fd;
	color: #3498db;
	border-left: 4px solid #3498db;
}
.error-text {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}
 @keyframes fadeIn {
 from {
opacity: 0;
transform: translateY(-10px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @media (min-width: 768px) {
     .lcycontainer {
    margin-top: -30px;
}
 .form-group.wd50 {
 width:46%;
 float:left;
}
 .form-group.wd51 {
 width:46%;
 margin-left:8%;
 float:left;
}
}
 @media (max-width: 576px) {
 .form-label {
 width:80px;
 padding-right: 0;
 padding-top: 0;
 margin-bottom: 8px;
}
 .captcha-container {
 width:100%;
}
 .captcha-code {
 width: 80px;
}
 .form-footer {
 justify-content: center;
}
.form-header h2{
	font-size: 24px;
}
}
