:root {
    --brand: #22389c;
    --text: #0f172a;
    --muted: #6b7280;
    --bg: #f8fafc;
    --hero-image: url("../images/POC-Login.png");
  }

  body {
    background: var(--bg);
    color: var(--text);
  }
  .page {
    min-height: 100svh;
  }

  /* Left column */
  .form-col {
    background: #fff;
  }
  .form-wrap {
    max-width: 560px;
    width: 100%;
  }
  .form-title {
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  /* Right visual (tablet + desktop) */
  .visual-col {
    background-image: linear-gradient(
        rgba(10, 16, 30, 0.45),
        rgba(10, 16, 30, 0.55)
      ),
      var(--hero-image);
    background-size: cover;
    background-position: center;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  @media (max-width: 767.98px) {
    .visual-col {
      display: none !important;
    }
  } /* hide on phones */
  .nav-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
  }
  .nav-links a:hover {
    opacity: 0.9;
  }
  .visual-caption {
    padding: 2rem;
    color: #e5e7eb;
    font-weight: 700;
  }

  .form-page {
    height: 100vh;
  }
  /* Inputs & placeholders */
  .form-control::placeholder {
    color: #9ca3af;
    font-size: 0.85rem;
  }
  .form-control {
    border-radius: 12px;
    padding: 0.9rem 1rem;
  }

  /* Email domain button (dark) */
  .input-group .btn {
    border-radius: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: #0b0b0b;
    color: #fff;
    border-color: #0b0b0b;
  }
  .input-group > .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* Primary CTA */
  .btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    border-radius: 12px;
    font-weight: 600;
    padding: 10px;
  }
  .btn-primary:hover {
    background: var(--text);
  }

  /* Terms links */
  .form-check a {
    color: #f59e0b;
    text-decoration: none;
  }
  .form-check a:hover {
    text-decoration: underline;
  }

  /* Password eye */
  .has-eye {
    position: relative;
  }
  .has-eye .form-control {
    padding-right: 3rem;
  } /* room for icon */

  .has-eye .form-control.is-valid,
  .has-eye .form-control.is-invalid,
  .was-validated .has-eye .form-control:valid,
  .was-validated .has-eye .form-control:invalid {
    padding-right: 5.25rem;
  }

  .password-toggle {
    position: absolute;
    right: 30px;
    top: 65%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    color: #6b7280;
    border: none;
  }
  .password-toggle:focus-visible {
    outline: 2px solid rgba(1, 32, 170, 0.25);
  }

  .has-eye .form-control.is-valid + .password-toggle,
  .was-validated .has-eye .form-control:valid + .password-toggle,
  .has-eye .form-control.is-invalid + .password-toggle,
  .was-validated .has-eye .form-control:invalid + .password-toggle {
    right: 3.25rem;
    top: 65%; /* leaves space for Bootstrap's bg icon at far right */
  }

  .link {
    color: #f59e0b !important;
  }
  .visual-caption small {
    font-size: 14px;
  }
  .poc-dashboard .card {
    width: 100%;
    max-width: 100%;
  }

  /* Form Messages */
  .form-message {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .form-message.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
  }

  .form-message.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
  }

  .form-message .btn-close {
    filter: none;
    opacity: 0.7;
  }

  .form-message .btn-close:hover {
    opacity: 1;
  }