/* Reset Password page - extends login.css */

.reset-intro-msg {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Submit button — brand orange (#f79c00, white text) */
.reset-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    background: #f79c00;
    border: 2px solid #f79c00;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(247, 156, 0, 0.22);
    transition: all 0.3s ease;
}

    .reset-action-btn .btn-text {
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 600;
    }

    .reset-action-btn:hover {
        background: #d98700;
        border-color: #d98700;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(217, 135, 0, 0.25);
    }

    .reset-action-btn:focus,
    .reset-action-btn:focus-visible {
        outline: 2px solid rgba(247, 156, 0, 0.65);
        outline-offset: 3px;
    }

    .reset-action-btn:disabled {
        background: #f3c987;
        border-color: #f3c987;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

/* Tighten submit button spacing on the reset form */
#reset-form .reset-action-btn {
    margin-top: 4px;
}

/* Inline resend line under the code input */
.reset-resend-line {
    font-size: 12px;
    color: #6B7280;
}

.reset-resend-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

    .reset-resend-link:hover {
        color: #2563eb;
        text-decoration: underline;
    }

    .reset-resend-link.is-disabled {
        pointer-events: none;
        color: #93c5fd;
        text-decoration: none;
    }

.reset-resend-countdown {
    margin-left: 4px;
    font-size: 12px;
    color: #6B7280;
}

/* Footer block inside the card */
.reset-footer {
    margin-top: 28px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.reset-footer-logo {
    width: 110px;
    height: auto;
    margin: 0 auto 8px auto;
    display: block;
}

.reset-footer-partof {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
}

.reset-wizardit-link {
    color: #f79c00;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

    .reset-wizardit-link:hover {
        color: #d98700;
        text-decoration: underline;
    }

.reset-policy-links {
    justify-content: center;
    animation: none;
    opacity: 1;
}
