/* ===== PAGE BACKGROUND ===== */
.auth-bg {
    background: #f9fafb;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont;
}

/* ===== WRAPPER ===== */
.auth-wrapper {
    max-width: 1000px;
    margin: auto;
}

/* ===== AUTH CARD ===== */
.auth-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===== INPUTS ===== */
.light-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.light-input:focus {
    border-color: #2563eb;
    box-shadow: none;
}

/* ===== BUTTONS ===== */
.auth-btn {
    height: 48px;
    background: #2563eb;
    border: none;
    font-weight: 500;
}

.auth-btn:hover {
    background: #1d4ed8;
}

.btn-outline-secondary {
    height: 48px;
}

.google-btn {
    height: 48px;
    font-weight: 500;
    border: 1px solid #d1d5db;
}

/* ===== LINKS ===== */
.forgot-link {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 991px) {
    .auth-wrapper {
        padding: 0 15px;
    }

    .auth-card {
        margin: auto;
    }
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    margin: 10px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

/* ===== ERROR MESSAGE ===== */
/* ===== Eyes Css ===== */
.password-wrapper {
    position: relative;
}

.password-wrapper .form-control {
    padding-right: 45px; /* space for eye icon */
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 16px;
}

/* ===== Eye Icon Size Adjustment ===== */
/* Match Continue with Google button size */
.btn-google-size {
    height: 45px;                 /* SAME as Google button */
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
}

/* Brand olive button */
/* Brand button - consistent in all states */
.auth-btn {
    background-color: #868d07;
    border-color: #868d07;
    color: #ffffff;
}

/* Hover */
.auth-btn:hover {
    background-color: #5f7f1f;
    border-color: #5f7f1f;
    color: #ffffff;
}

/* Active / Click */
.auth-btn:active,
.auth-btn.active,
.auth-btn:focus,
.auth-btn:focus-visible {
    background-color: #868d07 !important;
    border-color: #868d07 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

