/* Authentication Pages Styles (Login/Signup) */

.auth-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.auth-container {
  background: white;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.auth-title {
  margin-bottom: 25px;
  text-align: center;
  color: #111;
}

.input-group {
  margin-bottom: 20px;
}

.input-group-last {
  margin-bottom: 25px;
}

.auth-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.auth-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.auth-error {
  color: red;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.auth-button {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.auth-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.auth-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}