/* 8. Auth Box Style (Shared for Login/Register) */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 2rem;
}
.auth-box {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  text-align: center;
}
.auth-header .auth-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.auth-header h2 {
  margin: 0 0 1.5rem;
  color: #065064;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #065064;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #7999aa;
  box-shadow: 0 0 0 3px rgba(121, 153, 170, 0.2);
}
.error-msg {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.875rem;
  color: #d33;
}

.auth-button {
  width: 100%;
  background: #065064;
  color: #fff;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.auth-button:hover {
  background: #053e4b;
}

.auth-footer {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #444;
}
.auth-footer a {
  color: #065064;
  font-weight: bold;
  text-decoration: none;
}
.auth-footer a:hover {
  text-decoration: underline;
}
