/**
 * TenderStaff - Background Verification Form Stylesheet
 * This file contains specific styles for the multi-step verification form.
 */

/* ===================================
   --- Hero Section ---
   =================================== */
.hero-section-animated {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #f3f6ff 0%, #e1e9ff 100%);
    border-bottom: 1px solid #dee2e6;
}

.hero-section-animated h1 {
    font-weight: 700;
    color: #030f27;
    animation: fadeInDown 1s ease-out;
}

.hero-section-animated .lead {
    color: #555;
    animation: fadeInUp 1s ease-out;
}

/* ===================================
   --- Form Container & Steps ---
   =================================== */
.verification-form-container {
    max-width: 900px;
    margin: 45px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-section-title {
    color: #030f27;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fdbe33;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   --- Form Elements & Progress Bar ---
   =================================== */
.progress-bar {
    background-color: #fdbe33;
    font-weight: 500;
    color: #030f27;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: #fdbe33;
    box-shadow: 0 0 0 0.25rem rgba(253, 190, 51, 0.25);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Buttons */
.btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 10px 20px;
}

.btn-primary {
    background-color: #fdbe33;
    border-color: #fdbe33;
    color: #030f27;
}

.btn-primary:hover {
    background-color: #e4a91a;
    border-color: #e4a91a;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn i {
    margin-left: 5px;
}

.prev-step i {
    margin-right: 5px;
    margin-left: 0;
}

/* ===================================
   --- Responsive Design ---
   =================================== */
@media (max-width: 767.98px) {
    .verification-form-container {
        padding: 20px;
        margin: 20px auto;
    }
    
    .hero-section-animated {
        padding: 40px 15px;
    }

    .hero-section-animated h1 {
        font-size: 2.5rem;
    }
}
