/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
 */
.form-container {
	font-family: 'Poppins';
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 70%;
    overflow: hidden;
    margin: 0 auto;
	color:#252c3e;

}

.form-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.form-title {
    font-size: 33px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0px;
}

.form-subtitle {
    font-size: 17px;
	font-weight:400;
    color: #6c757d;
    margin: 0px;
	margin-top: -10px;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #007bff;
    color: white;
}

.progress-step.inactive {
    background: #e9ecef;
    color: #6c757d;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px;
}

.progress-line.active {
    background: #007bff;
}

.step-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 20px;
}

.step-label {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    flex: 1;
}

.form-content {
    padding: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: clamp(15px,0.36vw + 13.29px,16px);
    font-weight: 500;
    color: #252c3e;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 20px;
/*     font-weight: 500; */
/*     color: #495057; */
    margin-bottom: 8px;
	margin-top: 25px;
	
/* 	font-size: clamp(15px,0.36vw + 13.29px,16px); */
    font-weight: 500;
    color: #252c3e;
	padding-top: 1 rem;
/*     margin-bottom: 20px; */
}

.required {
    color: #dc3545;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 12px;
    transition: border-color 0.3s ease;
    background: white;
}

input:focus,
select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #1e7e34;
}

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 12px;
}

.footer a {
    color: #3498db;
    text-decoration: none;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .form-container {
        margin: 10px;
        max-width: 100%;
		width: 100%;
    }

    .form-content {
        padding: 20px;
    }

    .name-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .progress-line {
        width: 40px;
    }

    .step-labels {
        padding: 0 10px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-header {
        padding: 20px 20px 15px;
    }

    .form-title {
        font-size: 20px;
    }

    .progress-step {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .progress-line {
        width: 30px;
    }
}
