/*
 * REX ID registration CTA.
 * Authelia exposes this stable control as #reset-password-button even though
 * it is deliberately repurposed to open the public REX ID registration page.
 */
#reset-password-button {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 12px 18px;
    border: 1px solid #56b5ff;
    border-radius: 5px;
    background: linear-gradient(135deg, #2388e8 0%, #0969cf 100%);
    box-shadow: 0 8px 20px rgba(21, 121, 226, 0.28);
    color: #ffffff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    -webkit-tap-highlight-color: transparent;
}

#reset-password-button:hover {
    background: linear-gradient(135deg, #3299f5 0%, #0c72dc 100%);
    box-shadow: 0 10px 24px rgba(21, 121, 226, 0.38);
    transform: translateY(-1px);
}

#reset-password-button:active {
    box-shadow: 0 4px 12px rgba(21, 121, 226, 0.28);
    transform: translateY(0);
}

#reset-password-button:focus-visible {
    outline: 3px solid rgba(144, 202, 249, 0.92);
    outline-offset: 3px;
}

@media (max-width: 480px) {
    #reset-password-button {
        min-height: 52px;
    }
}
