.container{
    border: 0px;
    border-radius: 10px;
    padding: 20px;
    background: #ffffff59;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    max-width: 1000px;
}

body{
  background: linear-gradient(180deg, rgba(232,232,232,1) 0%, rgba(175,175,252,1) 13%);
}

textarea{
    max-width: 100%;
}

.content-form{
  margin: 10px 0px;
  display: flex;
  place-content: center;
}

label[for=age1]{
  margin-right: 15px;
}

.btn-purple{
    background-color: #6f42c1 !important;
    color: white !important; 
    transition: 200ms linear;
  }
  
  .btn-purple:hover{
    background-color: #8d10a7 !important;
  }

.loading{
  width: 30px;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  
  from {
    transform: rotate(0deg);
  }

  to{
    transform: rotate(360deg);
  }
}

  @media(min-width:1400px){
    .container{
       max-width: 40% !important;
    }
  }
  
  @media (min-width:992px){
  input{
    max-width: 45%;
  }
  }