
*{
    margin: 0;
    padding: 0;
}
 
body{
    font-family:sans-serif;
    margin-top:100px ;
       display: flex;
       /* flex-direction: column; */
   justify-content: center;
}
.html{
    scroll-behavior:smooth;

    
}
.form
{
   border: 1px solid #EEEEEE;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
   width: 60%;
   border-radius: 8px;


      /* text-align: center;
      position: absolute;
  left: -160px;
  top: -50px;
transform: translate(50% , 50%);  */

}

.form form
{
   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;

}

.form h1{
    text-align: center;
    margin: 100px 20px 20px;


}

.form form input{
    margin: 20px;
    border-radius: 8px;
    border: 1px solid #EEEEEE; 
    height: 60px;
    padding-left: 20px;
     transition:  all 0.3s ease;
}

.form form input:focus{
    margin: 20px;
    outline-color: blueviolet;

    
    
}





.form  button{
    margin: 20px;
    background-color: blueviolet;
    color: white;
    /* width: 100px; */
    border-radius: 8px;
   
   height: 50px;
    border: none;
}

.msg {
    margin: 20px ;
    text-align: center;
    border :1px solid  #719beb;
    background-color: #85c2f3;
    height: 50px;
    width: fit-content;
    padding: 20px 20px 0;
  position: relative;
  left: 350px;
  bottom: 30px;
    
}