  /* === Auth Form Styling (consistent with Register pages) === */
  .auth-card {
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .auth-card h2 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
  }
  .auth-card .form-label {
    font-weight: 600;
    color: #495057;
  }
  .auth-card .form-control {
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #154980;
    transition: all 0.2s;
  }
  .auth-card .form-control:focus {
    border-color: #154980;
    box-shadow: 0 0 0 0.05rem #154980;
  }
  .btn-auth {
    background-color: #154980;
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
  }
  .btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px #2F6B78;
  }
  .auth-footer {
    text-align: center;
    margin-top: 15px;
  }
  .auth-footer a {
    color: #154980;
    font-weight: 600;
    text-decoration: none;
  }
  .auth-footer a:hover {
    text-decoration: underline;
  }