/* Page */
.login-page {
  background: #f5f7fb;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.public-header {
  padding: 15px 25px;
  background: white;
  border-bottom: 1px solid #eee;
}

/* Wrapper */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

/* Card */
.auth-card {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
}

/* Title */
.auth-card h2 {
  margin-bottom: 20px;
}

/* Inputs */
.auth-card input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.auth-card input:focus {
  outline: none;
  border-color: #4a90e2;
}

/* Hidden field */
.hidden {
  display: none;
}

/* Button */
.primary-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #4a90e2;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.primary-btn:hover {
  background: #357bd8;
}

/* Toggle */
.toggle-text {
  margin-top: 15px;
  font-size: 14px;
}

.toggle-link {
  color: #4a90e2;
  cursor: pointer;
  margin-left: 5px;
  font-weight: bold;
}

/* Message */
.auth-message {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}