/* Общие настройки */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #121212; /* Темный фон */
  color: #ffffff; /* Белый текст */
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Заголовки */
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

p {
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: center;
}

/* Контейнер приложения */
#app {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #1e1e1e; /* Сlightly lighter background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Форма */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea, select {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #2d2d2d;
  color: #ffffff;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #4caf50; /* Акцентный цвет */
}

button {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #4caf50, #388e3c); /* Градиент кнопки */
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

button:active {
  transform: scale(0.95);
}

/* Подвал */
footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaaaaa;
}

footer a {
  color: #4caf50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}