* {
    margin: 0;
    box-sizing: border-box;
  }
  body {
      background-color: #d9d9d9;
    font-family: "Kanit", sans-serif;
  }
  #cadastro{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background-color: rgba(163, 163, 163, 0.616);
    width: 1100px;
    height: 550px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.300);
  }
  #logo{
    width: 415px;
    height: 230px;
  }
  #cadastrotittle{
    font-size: 50px;
  }
form{
    display: grid;
    gap: 20px; 
}
  input{
     border-radius: 20px;
     background-color: #FFFFFF;
     height: 40px;
     width: 275px;
     font-family: "Kanit", sans-serif;
     padding-left: 20px;
     font-size: 15px;
  }
  #enviar{
    background-color: #E34805;
    color: white;
  }
  #backpng{
    width: 50px;
  }
  #backbutton{
    position: absolute;
    left:0;
    top: 0;
    padding: 20px;
  }
