* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
@font-face{
    font-family: "Poppins";
    src:url(../Poppins/Poppins-Italic.ttf)
}
body {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


#container {
  text-align: center;
  max-width: 600px;
  width: 90%;
}

.title {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0 20px;
}


.information {
  color: gray;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 30px;
}


.recuadro {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 420px;   
  margin: 0 auto;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.03),
            0px 8px 12px 0px rgba(0, 0, 0, 0.08);
}


input {

  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid gray;
  margin-bottom: 15px;
  text-align: center; 
}


button {
  width: 100%;
  padding: 14px;
  background: rgb(50, 50, 241);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}


.disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: gray;
}