/* ==========================================
   SPACETREEBOT – SAAS AUTH STYLE
   Clean • Modern • Premium
   ========================================== */

/* ================= Auth Background ================= */

#auth {
    background: #f1f5f9 !important;  /* same as main body */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}


/* ================= Login Card ================= */

#auth .card {
    background: #ffffff !important;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 35px;
    transition: 0.25s ease;
}

/* Soft hover lift */
#auth .card:hover {
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}


/* ================= Auth Headings ================= */

#auth h1,
#auth h2,
#auth h3 {
    color: #111827;
    font-weight: 600;
    letter-spacing: -0.3px;
}


/* ================= Input Fields ================= */

#auth input {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #111827 !important;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    transition: 0.2s ease;
}

/* Focus style matching dashboard */
#auth input:focus {
    border-color: #2563eb !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}


/* ================= Login Button ================= */

#auth .btn-primary {
    background: #2563eb !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: 0.25s ease;
}

#auth .btn-primary:hover {
    background: #1d4ed8 !important;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}


/* ================= Divider ================= */

#auth hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
}


/* ================= Optional Subtext ================= */

#auth p,
#auth small {
    color: #64748b;
}/* ==========================================
   NEON OUTER GLOW ON AUTH CARD HOVER
   ========================================== */

#auth .card {
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
}

/* Neon outer glow effect */
#auth .card:hover {
    box-shadow:
        0 0 10px rgba(37, 99, 235, 0.6),
        0 0 25px rgba(37, 99, 235, 0.4),
        0 0 45px rgba(37, 99, 235, 0.25);
}

/* Optional stronger premium version (uncomment if needed) */
/*
#auth .card:hover {
    box-shadow:
        0 0 12px rgba(37, 99, 235, 0.8),
        0 0 30px rgba(37, 99, 235, 0.6),
        0 0 60px rgba(37, 99, 235, 0.4);
}
*/