.sjc-login-page {
    display: flex;
    min-height: 100vh;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sjc-login-hero,
.sjc-login-panel {
    width: 50%;
    min-height: 100vh;
}

.sjc-login-hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.sjc-login-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.sjc-login-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.88) 100%);
}

.sjc-login-hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: #fff;
}

.sjc-login-hero__title {
    margin: 0;
    color: #fff;
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
}

.sjc-login-hero__subtitle {
    margin: 1.25rem 0 2.25rem;
    color: #dbeafe;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 40rem;
}

.sjc-login-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sjc-login-hero__avatars {
    display: flex;
}

.sjc-login-hero__avatars img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid #0f172a;
    object-fit: cover;
    margin-left: -0.5rem;
}

.sjc-login-hero__avatars img:first-child {
    margin-left: 0;
}

.sjc-login-hero__proof-title {
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.sjc-login-hero__proof-text {
    margin: .25rem 0 0;
    color: #bfdbfe;
}

.sjc-login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.sjc-login-box {
    width: 100%;
    max-width: 28rem;
}

.sjc-login-box__logo-container {
    margin-bottom: 2.5rem;
}

.sjc-login-box__logo-img {
    max-height: 70px;
    width: auto;
    display: block;
}

.sjc-login-box__logo-initial {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: .9rem;
    background: #facc15;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.7rem;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.sjc-login-box__header h1 {
    margin: 0;
    color: #0f172a;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 800;
}

.sjc-login-box__header p {
    margin: .5rem 0 2rem;
    color: #64748b;
    font-size: 0.95rem;
}

.sjc-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sjc-login-form label {
    font-size: .95rem;
    font-weight: 700;
    color: #334155;
}

.sjc-login-form input[type="email"],
.sjc-login-form input[type="password"],
.sjc-login-form input[type="text"] {
    width: 100%;
    border-radius: .8rem;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    padding: .9rem 1rem;
    color: #0f172a;
}

.sjc-login-form input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
    background: #fff;
}

.sjc-login-form__password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sjc-login-form__password-header a {
    font-size: 0.85rem;
}

.sjc-login-form__password-header a,
.sjc-login-footer a {
    color: #1e40af;
    font-weight: 700;
    text-decoration: none;
}

.sjc-login-form__password-header a:hover,
.sjc-login-footer a:hover {
    text-decoration: underline;
}

.sjc-login-checkbox {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 400 !important;
    color: #64748b !important;
}

.sjc-login-btn {
    margin-top: .5rem;
    border: 0;
    border-radius: .8rem;
    background: #1e40af;
    color: #fff;
    font-weight: 700;
    padding: .95rem 1rem;
    cursor: pointer;
}

.sjc-login-btn:hover {
    background: #1e3a8a;
}

.sjc-login-footer {
    margin-top: 1.5rem;
    color: #64748b;
    text-align: center;
    font-size: 0.85rem;
}

.sjc-alert {
    border-radius: .8rem;
    padding: .75rem 1rem;
    font-size: .92rem;
}

.sjc-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.sjc-alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

@media (max-width: 1023px) {
    .sjc-login-page {
        min-height: auto;
    }

    .sjc-login-hero {
        display: none;
    }

    .sjc-login-panel {
        width: 100%;
        min-height: 100vh;
    }
}