/* ==============================
   EYO BANK - Main Stylesheet
   Theme: Black & Sky Blue
   ============================== */

:root {
    --sky: #0ea5e9;
    --sky-dark: #0284c7;
    --sky-light: #e0f2fe;
    --black: #0f172a;
    --dark: #1e293b;
    --dark2: #334155;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f59e0b;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(14,165,233,0.15);
    --shadow-dark: 0 8px 32px rgba(0,0,0,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Segoe UI', Arial, sans-serif; }

/* ---- AUTH PAGES ---- */
.eyo-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: var(--black);
}

.eyo-auth-bg {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #0c2445 50%, #0f172a 100%);
    z-index: 0;
}

.eyo-auth-bg::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
}

.eyo-auth-bg::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    border-radius: 50%;
}

.eyo-auth-card {
    background: rgba(30,41,59,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-dark);
}

.eyo-auth-card.wide { max-width: 720px; }

.eyo-auth-logo { text-align: center; margin-bottom: 32px; }

.eyo-logo-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 12px;
    box-shadow: 0 0 30px rgba(14,165,233,0.4);
}

.eyo-bank-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

.eyo-bank-tagline {
    color: var(--sky);
    font-size: 13px;
    margin-top: 4px;
}

.eyo-auth-form h2 { color: var(--white); font-size: 22px; margin-bottom: 4px; }
.eyo-auth-sub { color: var(--gray); font-size: 14px; margin-bottom: 24px; }

/* Fields */
.eyo-field { display: flex; flex-direction: column; gap: 6px; }
.eyo-field label { color: var(--sky-light); font-size: 13px; font-weight: 500; }
.eyo-field input,
.eyo-field select,
.eyo-field textarea {
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(14,165,233,0.25);
    border-radius: 8px;
    color: var(--white);
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
}
.eyo-field input:focus,
.eyo-field select:focus,
.eyo-field textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.eyo-field input::placeholder { color: #475569; }
.eyo-field select option { background: var(--dark); }
.eyo-field small { color: var(--gray); font-size: 11px; }

.eyo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.eyo-form-grid .eyo-field.full { grid-column: 1 / -1; }

.eyo-password-wrap { position: relative; }
.eyo-password-wrap input { padding-right: 44px; }
.eyo-toggle-pass {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    cursor: pointer; font-size: 16px;
}

/* Buttons */
.eyo-btn-full {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: var(--white); border: none; border-radius: 10px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    margin-top: 16px; transition: transform .2s, box-shadow .2s;
    font-family: inherit;
}
.eyo-btn-full:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,165,233,0.4); }
.eyo-btn-full:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.eyo-btn-primary {
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    color: white; border: none; border-radius: 8px;
    padding: 10px 20px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all .2s; font-family: inherit;
}
.eyo-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(14,165,233,0.4); }

.eyo-btn-outline {
    background: transparent; color: var(--sky);
    border: 1px solid var(--sky); border-radius: 8px;
    padding: 8px 16px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all .2s; font-family: inherit;
}
.eyo-btn-outline:hover { background: var(--sky); color: white; }

/* Alerts */
.eyo-alert {
    padding: 12px 16px; border-radius: 8px;
    font-size: 14px; font-weight: 500;
}
.eyo-alert-error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.4); color: #fca5a5; }
.eyo-alert-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: #86efac; }

.eyo-auth-links { text-align: center; margin-top: 20px; color: var(--gray); font-size: 14px; }
.eyo-link { color: var(--sky); text-decoration: none; font-weight: 600; }
.eyo-link:hover { text-decoration: underline; }

.eyo-terms { font-size: 13px; color: var(--gray); margin: 16px 0; }
.eyo-terms input { width: auto; margin-right: 8px; }

.eyo-auth-footer { text-align: center; margin-top: 24px; color: #475569; font-size: 12px; }

/* Success Panel */
.eyo-success-panel {
    text-align: center; padding: 30px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 12px;
}
.success-icon { font-size: 60px; margin-bottom: 16px; }
.eyo-success-panel h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.eyo-success-panel p { color: var(--gray); margin-bottom: 20px; }

/* Pending Screen */
.eyo-pending-screen {
    min-height: 80vh; display: flex;
    align-items: center; justify-content: center;
    background: var(--black);
}
.eyo-pending-card {
    background: var(--dark); border-radius: 20px;
    padding: 60px; text-align: center; max-width: 480px;
    border: 1px solid rgba(14,165,233,0.2);
}
.pending-icon { font-size: 64px; margin-bottom: 20px; }
.eyo-pending-card h2 { color: white; margin-bottom: 12px; }
.eyo-pending-card p { color: var(--gray); line-height: 1.6; }

@media (max-width: 600px) {
    .eyo-auth-card { padding: 24px; }
    .eyo-form-grid { grid-template-columns: 1fr; }
    .eyo-form-grid .eyo-field.full { grid-column: 1; }
}
