/* ── PC 로그인 ── */
.login-body { background: linear-gradient(135deg, #f0f1ff 0%, #e8f0fe 100%); min-height: 100vh; display: grid; place-items: center; }

.login-wrap { width: 100%; max-width: 420px; padding: 24px; }

.login-card {
  background: #fff; border-radius: 16px;
  padding: 40px 36px; box-shadow: 0 24px 60px rgba(50,65,135,.14);
}
.login-brand { text-align: center; margin-bottom: 28px; }
.login-brand img { width: 140px; margin: 0 auto 10px; }
.login-brand p { font-size: 13px; color: var(--muted); font-weight: 600; }

.login-error {
  margin-bottom: 16px; padding: 11px 14px;
  background: #fff1f2; border: 1px solid #fecdd3; border-radius: var(--radius);
  color: #be123c; font-size: 13px; font-weight: 600;
}

.login-form { display: flex; flex-direction: column; gap: 14px; }
.login-form .field-group { display: flex; flex-direction: column; gap: 6px; }
.login-form label { font-size: 13px; font-weight: 700; color: #334268; }
.login-form input[type="text"],
.login-form input[type="password"] {
  padding: 11px 14px; font-size: 14px; border-radius: var(--radius); width: 100%;
}

/* 자동 로그인 체크박스 */
.remember-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 13px; color: var(--muted); font-weight: 600;
}
.remember-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--line); border-radius: 4px;
  background: #fff; transition: all .13s;
  display: grid; place-items: center;
}
.remember-label input:checked ~ .checkbox-custom {
  background: var(--primary); border-color: var(--primary);
}
.remember-label input:checked ~ .checkbox-custom::after {
  content: "✓"; color: #fff; font-size: 11px; font-weight: 900;
}

.login-btn {
  width: 100%; min-height: 48px;
  background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(88,86,245,.24);
  transition: background .15s;
  margin-top: 4px;
}
.login-btn:hover { background: var(--primary-dark); }

.login-footer { text-align: center; margin-top: 20px; font-size: 12px; color: var(--muted); }

@media (max-width: 480px) {
  .login-card { padding: 28px 20px; border-radius: 12px; }
}
