/* ==========================================
   LOGIN PAGE LAYOUT
   ========================================== */
.login-image-side {
    background-image: url('/img/login_bg.jpg'); 
    background-size: cover;
    background-position: center;
}

.login-form-wrapper {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
}

/* ==========================================
   AUTH SPECIFIC UI ELEMENTS
   ========================================== */
.divider-text {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #ffeded;
    margin: 1.5rem 0;
}

.divider-text::before, .divider-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ffeded;
    opacity: 0.4;
}

.divider-text::before { margin-right: 10px; }
.divider-text::after { margin-left: 10px; }

/* Social Login Buttons */
.social-btn {
    background-color: white;
    color: black;
    border: none;
    border-radius: 8px;
    padding: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    flex: 1;
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
}

.social-btn:hover { background-color: #f0f0f0; }