﻿/* Step Tracker Styles */
.step-tracker-container {
    background-color: #f8f9fa;
    padding: 30px 0 0;
}

.step-label-single {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #22374E;
    margin-bottom: 10px;
}

.step-tracker {
    max-width: 240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-bottom: 10px;
}

.step-bar {
    height: 4px;
    margin: 0 10px;
    background-color: #e0e0e0;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.step-bar.active {
    background-color: #009B4C;
}

.step-bar.completed {
    background-color: #009B4C;
}

/* Verify Section */
.verify-section {
    background-color: #f8f9fa;
    padding: 30px 0 60px;
}

.step-content {
    display: none;
}

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

/* Form Card */
.form-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 50px 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.secure-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: #545353;
}

.secure-icon {
    width: 16px;
    height: 16px;
}

.form-title {
    font-size: 45px;
    font-weight: 700;
    color: #545353;
    margin-bottom: 15px;
    text-align: left;
}

.form-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #545353;
    margin-bottom: 40px;
    text-align: left;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #545353;
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #54535399;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #7cb342;
}

.form-control::placeholder {
    color: #999;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-continue {
    background-color: #22374E;
    color: #ffffff;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-continue:hover {
    background-color: #2d4560;
}

.btn-submit {
    background-color: #22374E;
    color: #ffffff;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2d4560;
}

/* Section Headers */
.section-header {
    background-color: #009B4C;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    margin: 30px 0 20px;
    text-align: center;
}

.select-wrapper {
    position: relative;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('/images/dropdown_arrow.png');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 30px !important;
}

/* Remove default arrow in IE */
.custom-select::-ms-expand {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verify-section {
        padding: 40px;
    }
    .step-tracker-container {
        padding: 40px 40px 0;
    }

    .step-number {
        font-size: 11px;
    }

    .form-card {
        padding: 30px;
        margin: 0 15px;
    }

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

    .form-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

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

    .secure-badge {
        position: static;
        justify-content: right;
        margin-bottom: 20px;
    }

    .form-actions {
        justify-content: center;
    }

    .btn-continue {
        width: 100%;
    }

    .section-header {
        margin: 20px 0 15px;
        font-size: 14px;
        padding: 10px 15px;
    }
}