body{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #FDEEEB;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.main{
   width: 400px;
    margin: auto;
    margin-top: 40px;
}
.bottom_container{
    background-color: #FFFFFF;
    min-height: 400px;
    margin-top: 0px;
    padding: 50px;
}


/* input */

  .inputbox > input{
    padding: 10px; 
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.3);;
    opacity: 0.5;
    outline: none;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    caret-color: red;
  }

  .inputbox{
    position: relative;
    width: 100%;
  }

  .inputbox span{
    position: absolute;
    left: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 0.70em;
    transition: 0.5s;
  }

  .inputbox input:valid ~ span,
  .inputbox input:focus ~ span{
    transform: translateX(10px) translateY(-7px);
    font-size: 0.65em;
    padding: 0 10px;
    background:  #FFFFFF;
  }


/* terms */

.terms > a{
    color: #FF3F6C;
    text-decoration: none;
    font-weight: 600;

 }
 .terms{
   margin-bottom: 20px;
 }

/* button- */

.button{
    width: 100%;
    height: 45px;
    font-weight: 600;
    color: white;
    background-color: #FF3F6C;
    border: none;
    margin-bottom: 20px;
}
 