/* forget-password.css — Page-specific styles only.
   Global reset, variables, fonts, header, footer, and animation
   are in auth-global.css */

/* ============================================================
   MOVED TO auth-global.css — kept here as reference comments
   ============================================================ */

/* Core Reset */
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}
*/

/* CSS Variables */
/*
:root {
    --primary: #000000;
    --primary-gradient: linear-gradient(135deg, #000000 0%, #001945 100%);
    --surface: #f7f9fc;
    --surface-card: #ffffff;
    --surface-low: #f2f4f7;
    --text-main: #191c1e;
    --text-variant: #44474c;
    --border: #e0e3e6;
    --accent: #2b5bb5;
    --blob-1: rgba(0, 25, 69, 0.2);
    --blob-2: rgba(203, 231, 245, 0.3);
}
*/

/* Body */
/*
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--surface);
    color: var(--text-main);
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
*/

/* Entrance Animation */
/*
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease-out; }
*/

/* ============================================================
   END OF MOVED STYLES
   ============================================================ */

/* Pointer cursor for interactive elements */
a, button, input, .nav-icon-btn, .back-link, svg {
    cursor: pointer !important;
}
/* .header {
    height: 72px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 227, 230, 0.5);
    display: flex;
    align-items: center;
    z-index: 50;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: var(--text-variant);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-icon-btn:hover { color: var(--accent); } */ */

/* --- Decorative Background Blobs --- */
.decor-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-top-right {
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: var(--blob-1);
    filter: blur(120px);
}

.blob-bottom-left {
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 40%;
    background: var(--blob-2);
    filter: blur(100px);
}

/* --- Main Viewport & Layout --- */
.viewport-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10;
}

.auth-wrapper {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.auth-card {
    background: var(--surface-card);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(196, 198, 204, 0.15);
    box-shadow: 0 12px 40px -12px rgba(25, 28, 30, 0.06);
}

/* --- Card Header Elements --- */
.card-intro {
    text-align: center;
    margin-bottom: 40px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--surface-low);
    margin-bottom: 24px;
}

.icon-circle span {
    font-size: 30px;
}

.card-intro h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.card-intro p {
    color: var(--text-variant);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* --- Form --- */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.input-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-stack label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-variant);
    letter-spacing: 1px;
}

.input-relative {
    position: relative;
    display: flex;
    align-items: center;
}

input {
    width: 100%;
    background: var(--surface-low);
    border: 2px solid transparent;
    padding: 16px;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s;
}

input::placeholder { color: #9ca3af; }
input:focus { border-color: var(--accent); }

.input-icon {
    position: absolute;
    right: 16px;
    opacity: 0.4;
    transition: opacity 0.2s;
    pointer-events: none; /* Let clicks pass through to input */
}

.input-relative:focus-within .input-icon {
    opacity: 1;
    color: var(--text-main);
}

/* --- Actions --- */
.action-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-main {
    background: var(--primary-gradient);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s;
}

.btn-main:active { transform: scale(0.96); }

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.back-link:hover { color: var(--accent); }
.back-link span { font-size: 16px; }

/* --- Trust Badges --- */
.trust-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(196, 198, 204, 0.2);
    display: flex;
    justify-content: center;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.trust-badge span:last-child {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trust-badge span.material-symbols-outlined { font-size: 14px; }

/* --- External Links --- */
.support-text {
    text-align: center;
    font-size: 12px;
    color: var(--text-variant);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.text-link {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: color 0.2s;
}

.text-link:hover { color: var(--primary); }

/* --- Fixed Footer --- */
/* .footer {
    height: 80px;
    background: #f8fafc;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: center;
    z-index: 50;
}

.footer-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand { font-weight: 800; font-size: 1.125rem; font-family: 'Manrope', sans-serif;}
.legal { font-size: 12px; color: #64748b; text-transform: uppercase; }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
    text-decoration: none;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-main); } */
/* --- Responsive --- */
@media (max-width: 480px) {
    .viewport-center {
        padding: 12px;
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .auth-card {
        padding: 18px 16px;
    }

    .card-intro h1 {
        font-size: 1.5rem;
    }

    .card-intro {
        margin-bottom: 28px;
    }

    .icon-circle {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .trust-footer {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .auth-card { padding: 14px 12px; }
    .card-intro h1 { font-size: 1.375rem; }
    input { padding: 13px; }
}
