/* W.E.-Safety login and password recovery branding */
.login-form button[type="submit"] {
    background: linear-gradient(135deg, #35104d 0%, #6d56d8 52%, #315fca 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 26px rgba(49,31,91,.24), inset 0 1px 0 rgba(255,255,255,.18);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.login-form button[type="submit"]:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 16px 32px rgba(49,31,91,.30), inset 0 1px 0 rgba(255,255,255,.20);
}
.login-form button[type="submit"]:focus-visible,
.login-forgot-link:focus-visible {
    outline: 3px solid rgba(77,125,255,.28);
    outline-offset: 3px;
}
.login-forgot-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 96%;
    margin-inline: auto;
    box-sizing: border-box;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(53,16,77,.20);
    background: linear-gradient(180deg, #ffffff 0%, #f4f0fb 100%);
    color: #35104d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(33,16,58,.08), inset 0 1px 0 #ffffff;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.login-forgot-link:hover {
    transform: translateY(-1px);
    border-color: rgba(109,86,216,.42);
    background: linear-gradient(135deg, rgba(109,86,216,.12), rgba(77,116,217,.10));
    box-shadow: 0 12px 26px rgba(33,16,58,.13), inset 0 1px 0 #ffffff;
}
@media (max-width: 640px) {
    .login-form button[type="submit"], .login-forgot-link { width: 100%; }
    .login-forgot-link { margin-inline: 0; }
}
