/**
 * Ethereal Care — Login page styles
 * Complements Tailwind utility classes from CDN.
 */

body {
    font-family: "Manrope", sans-serif;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Sembunyikan ikon mata bawaan browser (Edge/IE) — pakai tombol kustom saja */
.login-page input[type="password"]::-ms-reveal,
.login-page input[type="password"]::-ms-clear,
.login-page input[autocomplete="new-password"]::-ms-reveal,
.login-page input[autocomplete="current-password"]::-ms-reveal {
    display: none;
}

.signature-gradient {
    background: linear-gradient(135deg, #b11e6f 0%, #fc5eab 100%);
}

.login-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 9999px;
    border: 2px solid rgba(172, 179, 183, 0.45);
    background: #fff;
    color: #596064;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.login-home-btn:hover {
    border-color: #b11e6f;
    color: #b11e6f;
    background: rgba(177, 30, 111, 0.04);
}

.login-nav-home {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #596064;
    text-decoration: none;
    border: 1px solid rgba(172, 179, 183, 0.4);
    background: #fff;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.login-nav-home:hover {
    color: #b11e6f;
    border-color: #b11e6f;
}

/* Extra bottom space on small screens for fixed bottom nav */
@media (max-width: 767px) {
    body.login-page {
        padding-bottom: 5rem;
    }
}
