  body.auth-login-page {
    min-height: 100vh;
    background-color: #c6d8ef;
  }

  .auth-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .auth-login-card {
    width: 100%;
    max-width: 980px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(24, 61, 120, 0.2);
  }

  .auth-login-brand {
    background: linear-gradient(145deg, #244e97, #2e67c7);
    color: #fff;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .auth-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(221, 235, 255, 0.18);
    border: 1px solid rgba(221, 235, 255, 0.4);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .auth-brand-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
  }

  .auth-brand-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.7;
  }

  .auth-feature-list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
  }

  .auth-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.95rem;
  }

  .auth-feature-list li:last-child {
    margin-bottom: 0;
  }

  .auth-login-form-wrap {
    padding: 34px 32px;
    background: #fff;
  }

  .auth-login-title {
    margin-bottom: 4px;
    color: #184786;
    font-size: 1.8rem;
    font-weight: 700;
  }

  .auth-login-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 22px;
  }

  .auth-login-form-wrap .form-label {
    font-weight: 600;
    color: #1f4f8d;
  }

  .auth-login-form-wrap .form-control {
    min-height: 46px;
  }

  .auth-password-toggle {
    min-width: 48px;
  }

  .auth-password-toggle svg {
    width: 20px;
    height: 20px;
  }

  .auth-login-btn {
    min-height: 46px;
    font-weight: 700;
    background: #2e67c7;
    border-color: #244e97;
  }

  .auth-login-btn:hover {
    background: #244e97;
    border-color: #244e97;
  }

  .auth-back-link {
    display: inline-block;
    margin-top: 14px;
    color: #2e67c7;
    font-weight: 600;
    text-decoration: none;
  }

  .auth-back-link:hover {
    color: #1f4f8d;
    text-decoration: underline;
  }

  @media (max-width: 991px) {
    .auth-login-brand {
      padding: 24px 22px;
    }

    .auth-brand-title {
      font-size: 1.6rem;
    }

    .auth-login-form-wrap {
      padding: 24px 20px;
    }
  }
