
/* Минималистичная страница входа */
.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px); /* Вычесть высоту хедера и футера */
  padding: 2rem;
  background-color: #f5f6f7;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.auth-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-subtitle {
  color: #666;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Поля формы */
.auth-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: #1e1e1e;
}

/* Кнопка */
.btn-primary {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.75rem;
  background-color: #1e1e1e;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #000;
}

/* Ссылка на регистрацию */
.auth-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.auth-link a {
  color: #1e1e1e;
  font-weight: 500;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (max-width: 480px) {
  .auth-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .auth-container h2 {
    font-size: 1.4rem;
  }
}