/* 🌐 Общие стили страницы */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #333;
}

/* 📦 Контейнер */
.container {
  background-color: #fff;
  padding: 30px;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  /* Анимация появления */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out forwards;
}

/* 📝 Заголовки и текст */
h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  margin: 10px 0;
}

/* 🔘 Кнопка */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #007BFF, #00C6FF);
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 12px;
  margin-top: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0056b3, #009fe3);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.6);
  transform: translateY(0) scale(1.03);
}

/* 🎞️ Анимация появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ❗ Сообщение об ошибке */
.error-message {
  color: #cc0000;
  font-weight: bold;
  margin-top: 20px;
}

