.forgot-wrapper {
        background: linear-gradient(180deg, #FDFBF7 0%, #F3EAE0 100%);
        min-height: calc(100vh - 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }

    .forgot-container {
        max-width: 520px;
        width: 100%;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
        padding: 40px 36px;
    }

    .forgot-header {
        margin-bottom: 24px;
        text-align: center;
    }

    .forgot-header h3 {
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }

    .forgot-header p {
        font-size: 13px;
        color: #64748b;
        margin-top: 6px;
        margin-bottom: 0;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 12.5px;
        font-weight: 600;
        color: #334155;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 13px;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        outline: none;
        background-color: #f8fafc;
        transition: border 0.15s ease;
    }

    .form-group input:focus {
        border-color: #d9534f;
        background-color: #ffffff;
    }

    .btn-forgot {
        width: 100%;
        padding: 11px;
        background-color: #d9534f;
        color: #ffffff;
        border: 1px solid #d9534f;
        border-radius: 6px;
        font-size: 13.5px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.15s ease;
    }

    .btn-forgot:hover {
        background-color: #b03430;
    }

    .reset-divider {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 24px 0 18px;
        color: #64748b;
        font-size: 11.5px;
        white-space: nowrap;
    }

    .reset-divider::before,
    .reset-divider::after {
        content: '';
        height: 1px;
        flex: 1;
        background: #e2e8f0;
    }

    .otp-form .form-group {
        margin-bottom: 14px;
    }

    .otp-form input[name="otp"] {
        letter-spacing: .22em;
        text-align: center;
        font-weight: 700;
    }

    .form-footer-links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 22px;
        font-size: 12.5px;
    }

    .form-footer-links a {
        color: #d9534f;
        text-decoration: none;
        font-weight: 500;
    }

    .form-footer-links a:hover {
        text-decoration: underline;
    }

    .alert-box {
        padding: 10px 14px;
        border-radius: 6px;
        margin-bottom: 18px;
        font-size: 12.5px;
        line-height: 1.5;
    }
    .alert-error {
        background-color: #fee2e2;
        border: 1px solid #fca5a5;
        color: #991b1b;
    }
    .alert-success {
        background-color: #d1fae5;
        border: 1px solid #6ee7b7;
        color: #065f46;
    }
