.forgot-password-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000000;
        padding: 0;
        overflow: hidden;
    }

    .forgot-password-wrapper {
        display: flex;
        width: 100%;
        min-height: 100vh;
    }

    .forgot-password-form-section {
        flex: 1;
        max-width: 550px;
        padding: 3rem 2rem;
        background: #0a0a0a;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }

    .form-content {
        width: 100%;
        max-width: 450px;
    }

    .brand-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .brand-icon-small {
        width: 280px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .brand-icon-small img {
        width: 220px;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .brand-icon-small img:hover {
        transform: scale(1.05);
    }

    .form-header {
        margin-top: 2rem;
    }

    .form-title {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .form-subtitle {
        color: #8b92a7;
        margin-bottom: 0;
        line-height: 1.6;
    }

    .alert-success {
        background: rgba(25, 135, 84, 0.1);
        border: 1px solid rgba(25, 135, 84, 0.3);
        color: #198754;
        border-radius: 12px;
        padding: 1rem;
    }

    .form-label {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-control {
        background: #1a1d23;
        border: 1px solid #2d3238;
        color: #ffffff;
        padding: 0.875rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        background: #252a31;
        border-color: #0d6efd;
        color: #ffffff;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }

    .form-control::placeholder {
        color: #6c757d;
    }

    .form-text {
        color: #8b92a7;
        font-size: 0.85rem;
        margin-top: 0.5rem;
        display: block;
    }

    .btn-primary {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
    }

    .back-link {
        color: #8b92a7;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .back-link:hover {
        color: #0d6efd;
    }

    .help-section {
        border-top: 1px solid #2d3238;
        padding-top: 2rem;
    }

    .help-card {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 12px;
        padding: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .help-icon {
        width: 50px;
        height: 50px;
        background: rgba(13, 110, 253, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #0d6efd;
        flex-shrink: 0;
    }

    .help-content {
        flex: 1;
    }

    .help-title {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .help-text {
        color: #8b92a7;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .help-link {
        color: #0d6efd;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        transition: color 0.3s ease;
    }

    .help-link:hover {
        color: #0a58ca;
        text-decoration: underline;
    }

    .forgot-password-image-section {
        flex: 1;
        position: relative;
        display: none;
    }

    .background-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(10, 88, 202, 0.95) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem;
        z-index: 1;
    }

    .overlay-content {
        max-width: 600px;
        text-align: center;
        color: white;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto;
        backdrop-filter: blur(10px);
    }

    .overlay-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .overlay-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .steps-list {
        text-align: left;
        display: inline-block;
        width: 100%;
        max-width: 500px;
    }

    .step-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: white;
        color: #0d6efd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .step-content h6 {
        color: white;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .step-content p {
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    @media (min-width: 992px) {
        .forgot-password-image-section {
            display: block;
        }
    }

    @media (max-width: 991.98px) {
        .forgot-password-form-section {
            max-width: 100%;
            padding: 2rem 1.5rem;
        }

        .form-title {
            font-size: 1.75rem;
        }
    }

    @media (max-width: 575.98px) {
        .forgot-password-form-section {
            padding: 1.5rem 1rem;
        }

        .brand-icon-small {
            width: 280px;
            height: auto;
        }

        .brand-icon-small img {
            width: 220px;
            height: auto;
        }

        .form-title {
            font-size: 1.5rem;
        }

        .help-card {
            flex-direction: column;
            text-align: center;
        }

        .help-icon {
            margin: 0 auto;
        }
    }