/* public/css/auth.css - Clean + Wide Line Spacing */

.auth-container {
    max-width: 540px;
    margin: 80px auto;
    padding: 75px 55px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
  }
  
  .auth-container h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 65px;
    color: #1e3a8a;
  }
  
  .auth-container label {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
    color: #1e3a8a;
  }
  
  /* WIDE LINE SPACING - This is what you wanted */
  .auth-container .form-row {
    margin-bottom: 58px;        /* You can increase this to 65px or 70px if you want even wider */
  }
  
  .auth-container input {
    width: 100%;
    padding: 22px 24px;
    font-size: 20px;
    border: 2.5px solid #e2e8f0;
    border-radius: 14px;
    box-sizing: border-box;
  }
  
  .auth-container input:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 6px rgba(30,64,175,0.25);
    outline: none;
  }
  
  .auth-container button {
    width: 100%;
    padding: 24px;
    font-size: 21px;
    font-weight: 700;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 30px;
  }
  
  .auth-container button:hover {
    background: #16338a;
  }
  
  .auth-container p {
    text-align: center;
    margin-top: 55px;
    font-size: 18px;
  }
  
  .message {
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 14px;
    text-align: center;
    font-size: 18px;
  }
  
  .error { 
    background: #fee2e2; 
    color: #b91c1c; 
  }