.auth-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 2rem 0;
}

.auth-card {
  background-color: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 450px;
  width: 100%;
  animation: fadeIn 0.8s ease-in-out both;
}

.auth-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: var(--font-secondary);
  border: 1px solid var(--grey-color);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(229, 115, 115, 0.2);
}

.alert {
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid transparent;
}

.alert--success {
  background-color: #d1e7dd;
  color: #0f5132;
  border-color: #badbcc;
}

.alert--danger {
  background-color: #f8d7da;
  color: #842029;
  border-color: #f5c2c7;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}
