/* Основные стили сайта */
body {
  font-family: "Montserrat", sans-serif;
  color: #484848;
  background-color: #efeff3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

h1 {
  line-height: 5px;
}

form {
  animation: slide-up 0.5s ease-out;
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
}

@keyframes slide-up {
  from {
    transform: translateY(20%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

input[type="email"],
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 2px solid #e8a567;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background-color: #e8bd67;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #d7a228;
}

a {
  color: #e8b967;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  color: red;
  margin-top: 20px;
}

/* Медиа-запросы для адаптивного дизайна */
@media (max-width: 600px) {
  form {
    width: 90%;
    padding: 20px;
  }
}

.back-to-email {
  cursor: pointer;
  color: #e8a367;
  display: inline-block;
}

.back-to-emai:hover {
  background-color: #d79128;
}

#sent-email {
  color: grey;
  margin-top: 15px;
  font-size: 10px;
}
