/*
 * KaziKings — Auth Pages
 * Centralised stylesheet for all authentication views.
 */

/* ══════════════════════════════════════════════
   BASE
══════════════════════════════════════════════ */
body {
    font-family: 'Work Sans', 'Nunito', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(27, 67, 50, .92), rgba(45, 106, 79, .85)),
        url('/images/auth/elephant.jpg') center/cover no-repeat fixed;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

/* ══════════════════════════════════════════════
   CARD
══════════════════════════════════════════════ */
.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    overflow: hidden;
}

/* ══════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════ */
.auth-sidebar {
    background: linear-gradient(180deg, #1B4332, #143728);
    padding: 2.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-sidebar .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.auth-sidebar .feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .75rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FORM CONTROLS
══════════════════════════════════════════════ */
.form-control {
    border-radius: 10px;
    padding: .7rem 1rem;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 1px 2px hsla(0, 0%, 60%, .25);
    text-align: left;
    font-family: 'Work Sans', 'Nunito', sans-serif;
    font-size: 1rem;
    color: #222;
    box-sizing: border-box;
    height: 2.5rem;
}

.form-control:focus {
    border-color: #2D6A4F;
    box-shadow: 0 0 0 .2rem rgba(45, 106, 79, .15);
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-safari {
    background: #2D6A4F;
    border: none;
    border-radius: 10px;
    padding: .7rem;
    font-weight: 600;
    color: #fff;
}

.btn-safari:hover {
    background: #1B4332;
    color: #fff;
}

.btn-google {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: .6rem;
    background: #fff;
}

.btn-google:hover {
    background: #f8f9fa;
}

/* ══════════════════════════════════════════════
   MOBILE ICON (auth sidebar fallback for small screens)
══════════════════════════════════════════════ */
.auth-mobile-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════
   INPUT ICON
══════════════════════════════════════════════ */
.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}
