/* General Reset & Base */
body {
    background-color: #f4f7fa;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.form-container {
    max-width: 90%;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Step Indicator */
.progress {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    align-items: center;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d3dce6;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;
}

.step.active {
    background: #007bff;
    color: #fff;
}

.step.completed {
    background: #28a745;
    color: #fff;
}

.line {
    width: 60px;
    height: 4px;
    background: #ccc;
    margin: 0 10px;
    border-radius: 4px;
}

.line.completed {
    background: #28a745;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #adb5bd;
    border-color: #adb5bd;
    padding: 10px 25px;
}

.btn-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Form Elements */
input.form-control,
select.form-select,
textarea.form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s;
}

input.form-control:focus,
select.form-select:focus,
textarea.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.15);
}

label.form-label {
    font-weight: 500;
    margin-bottom: 4px;
}

.step-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Modal Overlay (Fast-Track Info) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.announcement-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* Verification Fields */
.verification-box {
    margin-top: 10px;
}

.verification-box input {
    width: 200px;
    display: inline-block;
}

.verification-status {
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
}

.verification-status.success {
    color: #28a745;
}

.verification-status.fail {
    color: #dc3545;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .step-indicator {
        flex-wrap: wrap;
        justify-content: center;
    }
    .line {
        display: none;
    }
    .form-container {
        padding: 20px;
    }
}
