
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    width: 100%;
    max-width: 420px;
  }
  
  .brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0e6655;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .form-label {
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #0e6655;
    border: none;
  }
  
  .form-control:focus {
    border-color: #0e6655;
    box-shadow: 0 0 0 0.2rem rgba(14, 102, 85, 0.25);
  }
  
  .toggle-links {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  
  .toggle-links a {
    text-decoration: none;
    color: #0e6655;
    font-weight: 500;
  }
  
  .message-box {
    display: none;
    text-align: center;
    margin-top: 1rem;
  }
  
  .message-box.success {
    color: green;
  }
  
  .message-box.error {
    color: red;
  }
  
  .auth-card {
    margin: 10rem auto;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    justify-content: center;
    border-radius: 16px;
  }
  #contact-message.alert {
    border-left: 4px solid var(--bs-danger);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  }
  #contact-message .bi {
    font-size: 1.1rem;
    margin-top: .15rem;
  }