body.login-page {
    min-height: 100vh;
}

.login-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 42%);
}

.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.login-panel__inner {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-weight: 800;
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
}

.login-logo__mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.login-heading {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.login-lead {
    color: var(--muted);
    margin: 0 0 32px;
    line-height: 1.55;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-field {
    position: relative;
}

.login-input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 15px;
    outline: none;
}

.login-input:focus {
    border-color: #c7d2fe;
    box-shadow: 0 0 0 3px rgba(94, 106, 210, 0.15);
}

.login-input--password {
    padding-right: 48px;
}

.login-toggle-pw {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    opacity: 0.6;
}

.login-submit {
    height: 50px;
    margin-top: 8px;
    border: none;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.login-submit:hover {
    background: #374151;
}

.login-demo {
    margin-top: 24px;
    font-size: 12px;
    color: var(--muted);
}

.login-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.login-visual__frame {
    width: 100%;
    max-width: 480px;
    min-height: 520px;
    border-radius: 28px;
    background: linear-gradient(160deg, #ecfdf5, #bbf7d0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.login-status-card {
    position: absolute;
    top: 28%;
    right: 10%;
    background: #fff;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
}

.login-status-card__title {
    font-weight: 700;
    margin: 0 0 2px;
}

.login-status-card__meta {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 10px;
}

.login-status-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.login-status-card__tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
}

.login-progress span {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
}

.login-visual__illus {
    font-size: 80px;
    opacity: 0.35;
}

@media (max-width: 900px) {
    .login-layout {
        grid-template-columns: 1fr;
    }
    .login-visual {
        display: none;
    }
}
