
.auth-container {
  min-height: 100vh; display: flex; justify-content: center; align-items: center;
  background: #f4f4f8;
}
.auth-card {
  background: #fff; border-radius: 15px; box-shadow: 0 4px 20px #0001;
  padding: 2.8em 2.3em 2.2em 2.3em; width: 370px; max-width: 97vw;    margin-top: 150px;
  margin-bottom: 100px;
}
.auth-card select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1.5px solid #d0d3e2;
    font-size: 1.05em;
    background: #fff;
    margin-bottom: 12px;
    outline: none;
    transition: border .2s;
    color: #1a1a1a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .auth-card select:focus {
    border: 1.7px solid #233b6e;
  }
  
.auth-card h2 {
  text-align: center; font-weight: 800; color: #21335b; margin-bottom: 1.5em;
  font-size: 2.1em; letter-spacing: 1px;
}
.auth-card form { margin-bottom: 1em; }
.auth-card label { font-weight: 600; margin-top: 8px; display: block; color: #1a1a1a; }
.auth-card input[type="email"], .auth-card input[type="password"], .auth-card input[type="text"], .auth-card input[type="date"] {
  width: 100%; margin-bottom: 12px; padding: 10px 12px;
  border-radius: 8px; border: 1.5px solid #d0d3e2; font-size: 1.05em;
  outline: none; transition: border .2s;
}
.auth-card input:focus { border: 1.7px solid #233b6e; }
.btn.btn-primary {
  width: 100%; padding: 12px 0; margin-top: 8px;
  background: #233b6e; color: #fff; font-weight: 700;
  border: none; border-radius: 7px; font-size: 1.11em;
  letter-spacing: 0.7px; transition: background .18s;
}
.btn.btn-primary:hover { background: #1c2f5e; }
.btn.btn-guest {
  width: 100%; padding: 12px 0; background: #fff;
  color: #233b6e; font-weight: 700; border: 1.5px solid #233b6e;
  border-radius: 7px; font-size: 1.1em; letter-spacing: 0.7px;
  margin-top: 0.2em; transition: background .17s, color .17s;
}
.btn.btn-guest:hover { background: #233b6e; color: #fff; }
.auth-or {
  text-align: center; margin: 1em 0 1.1em 0; color: #8a93ae;
  font-size: 1em; font-weight: 500; letter-spacing: 2px;
}
.auth-link {
  text-align: center; margin-top: 15px; font-size: 1em; color: #666;
}
.auth-link a { color: #233b6e; font-weight: 600; text-decoration: none; }
.auth-link a:hover { text-decoration: underline; }
.auth-error {
  color: #fff; background: #f04b54; border-radius: 6px; padding: 10px 0 10px 16px; margin-bottom: 10px;
  font-weight: 600; font-size: 1em;
}

.forgot-pass {
    text-align: right;
    margin-bottom: 20px;
  }
  .forgot-pass a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
  }
  .forgot-pass a:hover {
    text-decoration: underline;
  }