/* Центрирование контейнера */
.reset-container {
  max-width: 420px;
  margin: 100px auto;
  padding: 40px 35px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.reset-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Заголовок */
.reset-container h2 {
  margin-bottom: 15px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

/* Подзаголовок */
.reset-container p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Поле ввода */
.reset-container input[type="email"],
.reset-container input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.reset-container input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

/* Кнопка */
.btn-primary {
  background-color: #0d79af;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.8s ease;
  width: 100%;
  margin-top: 20px;
}

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

/* Адаптивность */
@media (max-width: 480px) {
  .reset-container {
    margin: 60px 15px;
    padding: 30px 25px;
  }
}
