.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F3F9;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.login-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91,76,224,0.08) 0%, transparent 70%);
    top: -140px;
    right: -120px;
}

.login-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,111,240,0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

.login-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
    top: 30%;
    left: 12%;
}

.login-shell {
    width: 100%;
    max-width: 1120px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.login-content {
    width: 100%;
    max-width: 440px;
    flex: 0 1 440px;
}

.login-top {
    text-align: center;
    margin-bottom: 26px;
}

.login-top-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #5B4CE0;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(91, 76, 224, 0.3);
}

.login-illustration {
    flex: 1 1 560px;
    max-width: 560px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-illustration img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 12px 24px rgba(91, 76, 224, 0.12));
}

.login-top h1 {
    font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    color: #1E1B3A;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.login-top p {
    font-size: 14px;
    color: #6B7196;
    font-weight: 500;
}

.login-card {
    background: #FFFFFF;
    border: 1px solid #E4E7F0;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(91, 76, 224, 0.07);
    padding: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #3D3A5C;
    margin-bottom: 8px;
}

.input-wrap { position: relative; }

.input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #5B4CE0;
    font-size: 15px;
    pointer-events: none;
    opacity: 0.5;
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1.5px solid #E4E7F0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    background: #F8F9FC;
    color: #1E1B3A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s ease;
}

.input-wrap input:focus {
    outline: none;
    border-color: #5B4CE0;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(91, 76, 224, 0.08);
}

.input-wrap input::placeholder {
    color: #9CA3C2;
    font-weight: 500;
}

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B7196;
    cursor: pointer;
    font-size: 14px;
    padding: 6px;
    transition: color 0.2s;
}

.pw-toggle:hover { color: #5B4CE0; }

.login-btn {
    width: 100%;
    padding: 15px 18px;
    background: #5B4CE0;
    color: white;
    font-weight: 800;
    font-size: 15px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(91, 76, 224, 0.25);
}

.login-btn:hover {
    background: #4F3FD5;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91, 76, 224, 0.35);
}

.login-btn:active { transform: translateY(0); }

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #9CA3C2;
    font-weight: 500;
}

@media (max-width: 820px) {
    .login-page {
        min-height: 100svh;
        align-items: flex-start;
        padding: 8px 0 0;
    }
    .login-shell {
        display: block;
        max-width: none;
    }
    .login-illustration {
        width: 100%;
        max-width: none;
        min-height: 0;
        margin: 0 auto 16px;
        padding: 0 8px;
    }
    .login-illustration img {
        width: min(92%, 380px);
        max-width: none;
        max-height: 225px;
    }
    .login-content {
        max-width: none;
        padding: 0 16px 16px;
    }
    .login-top-icon { display: none; }
}

@media (max-width: 480px) {
    .login-page { padding-top: 6px; }
    .login-illustration {
        margin-bottom: 14px;
        padding: 0 6px;
    }
    .login-card { padding: 24px 20px; border-radius: 20px; }
    .login-top h1 { font-size: 24px; }
    .login-top {
        margin-bottom: 18px;
    }
    .login-illustration img {
        width: 92%;
        max-height: 215px;
    }
}
