body{

    background-color: #686968;
}



a{
    text-decoration: none;
    
}



#container{

    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    padding: 40px;
}

.form-box{

width: 350px;
height: 800px;
position: relative;
margin-left: auto;
margin-right: auto;
background-color: white;
padding: 60px;
border-radius: 6px;

}

.btn{

width: 108%;
padding: 10px;
border-radius: 7px;
border: none;
    padding: 0.7rem 2.3rem;
    font-size: 18px;
    background-color: #e84949;
    color: white;
    box-shadow: 5px 5px 7px 0px #0000003f;
    position: relative;
    z-index: 1;
    cursor: pointer;

}


.btn::before{
    content: "";
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 1s;
  }

  .btn:hover::before{
    transform: scaleX(1);
    }


.form-box .form-group input{
width: 100%;
padding: 10px;
border-radius: 7px;
}


footer {

text-align: center;
}


footer h3{

color: white;
}
