@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Roboto', sans-serif;
  background: #C8EDE8;

}

form{
  text-align: center;
  padding-top: -1em;
}

.form{
  width: 400px;
  background: #24303c;
  padding: 25px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: white;
  box-shadow: 7px 13px 37px #000;
}

.form h2 {
    font-size: 30px;
    text-align: center;
    padding-top: 3em;
  }

  .form h3 {
    font-size: 18px;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
  }


img{
  width: 110px;
  height: 60px;
  float: left;
  
}

.controls {
    width: 100%;
    background: #24303c;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 4px;
    border: 2px solid #1f53c5;
    font-family: 'calibri';
    font-size: 18px;
    color: white;
    opacity: 0.5;
  }

  .botons {
    width: 100%;
    background: #1f53c5;
    border: none;
    padding: 12px;
    color: white;
    margin: 14px 0;
    font-size: 16px;
    cursor: pointer;
  }

  .botons:hover{
    background: #fff;
    color: #1f53c5;
  }

  .boton{
    width: 100%;
    background: #1f53c5;
    border: none;
    padding: 12px;
    color: white;
    margin: 14px 0;
    font-size: 16px;
    cursor: pointer;
  }

  @media screen and (max-width:800px){
    .form{
      width: 80%;
      display: flexbox;
      text-align: center;
      margin-top: 30px;
      margin-bottom: 10px;
    }
    
    .icon{
      text-align: left;
    }
  }
 