/* NESQIRA Base Styles – Phase 1 */
body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   NESQIRA BRAND SYSTEM
   ========================= */

/* Animated Pastel Rainbow */
@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pastel-rainbow {
    background: linear-gradient(
        270deg,
        #ffd6e8,
        #fff1b8,
        #d6f5ff,
        #e0d6ff,
        #d6ffe6
    );
    background-size: 600% 600%;
    animation: rainbowShift 18s ease infinite;
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

/* Brand */
.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
    color: #000 !important;
}

/* Nav links */
.nav-link {
    color: #000 !important;
    font-weight: 600;
}

/* Button-style nav items */
.nav-btn {
    margin-left: 10px;
    border-radius: 20px;
    padding: 8px 16px;
}

/* Ensure page content is not hidden behind navbar */
body {
    padding-top: 72px;
}


/* === AUTH FORMS (LOGIN / SIGNUP) === */
.auth-card input,
.auth-card select {
    border-radius: 999px;
    padding: 10px 16px;
}

.auth-card label {
    font-size: 0.85rem;
    color: #6b7280;
}

.auth-card .btn {
    padding: 10px 18px;
}

.auth-divider {
    text-align: center;
    margin: 18px 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

.auth-social .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === AUTH FORMS (LOGIN / SIGNUP) === */
.auth-card input,
.auth-card select {
    border-radius: 999px;
    padding: 10px 16px;
}

.auth-card label {
    font-size: 0.85rem;
    color: #6b7280;
}

.auth-card .btn {
    padding: 10px 18px;
}

.auth-divider {
    text-align: center;
    margin: 18px 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

.auth-social .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
/* === FIX AUTH INPUT ALIGNMENT & SHAPE === */
.auth-card input[type="email"],
.auth-card input[type="text"],
.auth-card input[type="password"] {
    width: 100%;
    border-radius: 999px;
    padding: 12px 18px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

.auth-card input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
}
/* === FORCE ALLAUTH INPUT STYLING (LOGIN + SIGNUP) === */
.auth-card input,
.auth-card select {
    width: 100% !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    border: 1px solid #d1d5db !important;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.auth-card input:focus,
.auth-card select:focus {
    outline: none;
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 2px rgba(99,102,241,0.18);
}

/* === HARD FIX: FORCE STYLE ALL AUTH INPUTS (ALLAUTH SAFE) === */
body input[type="email"],
body input[type="text"],
body input[type="password"] {
    width: 100%;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    border: 1px solid #d1d5db !important;
    font-size: 15px;
    box-sizing: border-box;
}

body input[type="email"]:focus,
body input[type="text"]:focus,
body input[type="password"]:focus {
    outline: none;
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
