@import url("https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalnia:wght@100..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kanit', sans-serif;
}

/* Background e centralização */
body {
  background: rgb(222, 195, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 15px;
  font-family: "kanit", sans-serif;
  gap: 10px;
}

/* Container branco com sombra e borda arredondada */
.container {
  background-color: #fff;
  padding: 30px 35px;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(158, 139, 182, 0.8);
  animation: fadeIn 0.5s ease-out;
}

/* Parágrafo de instrução */
.info-text {
  text-align: center;
  font-size: 18px;
  color: #5c426a;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Label para o input */
label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #4b3c61;
}

/* Input de email */
input[type="email"], input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 2px solid #d0bff2;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  background-color: #f8f5fb;
}

/* Foco no input */
input[type="email"]:focus, input[type="text"]:focus {
  outline: none;
  border-color: #9454ac;
  box-shadow: 0 0 8px #9454acaa;
  background-color: #fff;
}

/* Botão estilizado */
button.botao {
  width: 100%;
  padding: 14px 0;
  border-radius: 15px;
  border: none;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  background: #9454ac;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 5px 15px rgba(158, 139, 182, 0.4);
  transition: all 0.3s ease;
}

/* Hover do botão */
button.botao:hover {
  background: #7c3d96;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(158, 139, 182, 0.6);
}

/* Click do botão */
button.botao:active {
  transform: translateY(1px);
}

/* Animação fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade: em telas pequenas */
@media (max-width: 400px) {
  .container {
    padding: 20px 20px;
  }

  .info-text {
    font-size: 14px;
  }

  button.botao {
    font-size: 14px;
  }
}