/* ============================================================
   CLIENT LOGIN PAGE LAYOUT
============================================================ */

.client-login-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;

    max-width: 1250px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Left side hero */
.client-login-left {
    flex: 1;
}

/* Right side login box */
.client-login-right {
    flex: 1;
    max-width: 520px;
}
.oauth-error-box {
    background: #ffe5e5;
    color: #b30000;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.05),
        0 1px 3px rgba(0,0,0,0.03);
}
/* ============================================================
   CLIENT LOGIN — MOBILE STACK
============================================================ */
@media (max-width: 900px) {

    .client-login-layout {
        flex-direction: column;
        gap: 32px;
        margin: 40px auto;
    }

    .client-login-left {
        width: 100%;
    }

    .client-login-right {
        width: 100%;
        max-width: 100%;
    }
}
