body{
background: rgb(245, 239, 249);
font-family: Arial, Helvetica, sans-serif;
}

.container{
  margin: 120px auto;
  max-width: 600px;
  padding: 0 20px 10px 20px;
  border-radius: 30px;
}

a{
  color:#885df1;
  text-decoration: none;
}

h1{
  text-align: center;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color:#272044
  
}

header{
  margin-bottom: 30px;
}

.form-container{
  padding: 20px;
  padding-top: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 20px 60px rgba(65, 50,100, 0.2);
  margin-bottom: 30px;
}

form{
  display: flex;
}

.hint{
  line-height: 1.5;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 10px;
  opacity: 0.6;

}



.instructions{
  padding:16px;
  border: 1px solid rgba(39,33,66,0.5);
  width:80%;
  font-size: 16px;
border-radius: 50px;
line-height: 20px;

}
.submit-button{
    margin-left: 10px;
    background-color: #885df1;
    border:none;
    border-radius: 50px;
    width:25%;
    font-size: 16px;
    padding:14px 24px;
}

.text{
  font-size: 16px;
  background-color: rgb(247, 243, 249);
  padding: 20px;
  line-height: 1.5;
  border-left: 3px solid #885df1;
  border-radius: 0 10px 10px 0;
  box-shadow: 0px 4px 30px 0px rgba(39,33,66,0.03);

}

.hidden{
  display: none;
}

.text strong{
  color:#885df1
}


footer{
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
}

.generating{
  animation: blink-animation 0.6s steps(5, start) infinite;
}

@keyframes blink-animation{
  to{
    visibility: hidden;
  }
}
