*{
    margin: 0;
    padding: 0;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(to right ,rgba(0,0,0, .8),rgba(19, 11, 11, 0.6),rgba(0,0,0, .8)),url('../img/bg.png') no-repeat center;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}
.box{
    width: 60%;
    height: 50%;
    background: rgba(0, 0, 0, 0.514);
    color: aliceblue;
    display: flex;
    align-items: center;
    border-radius: 4px;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
}
.log-in,.sign-up{
    width: 50%;
    padding: 2em;
    box-sizing: border-box;
    color: rgb(234, 235, 236);
 }
.log-in h2,.sign-up h2{
    font-size: 2.2em;
    font-weight: 900;
    padding-bottom: .5em;
}
.log-in p,.sign-up p{
    font-size: 1.2em;
    padding-bottom: 1em;
}
.log-in button,.sign-up button{
    text-align: center;
    padding: .8em 2.6em;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid;
    border-radius: 4px;
}
.log-in button:hover,.sign-up button:hover{
    text-align: center;
    padding: .8em 2.4em;
    background: rgba(150, 148, 148, 0.521) ;
    color:  rgb(255, 255, 255);
    font-weight: bold;
    border: 3px solid;
    border-radius: 4px;
}



.form{
    display: flex;
    flex-direction: column;
    width: 23em;
    height: 24em;
    position: absolute;
    margin-left: 2em;
    background-color: rgb(216, 221, 224);
    border-radius: 4px;
    align-content: top;
    justify-content: space-evenly;
    padding: 2em;
    box-sizing: border-box;
    transition: .9s cubic-bezier(0.075, 0.82, 0.150, 1.23);
}
.title{
   color:rgb(54, 135, 241);
   text-transform: uppercase;
   font-size: 1.2em;
   font-weight: bolder;
}

.form-control{
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    color: rgb(31, 31, 31);
}
.input-line{
   display: flex;
   justify-content: space-between;
   border-bottom: 1px solid rgb(116, 116, 116);
   font-size: 1em;
   padding-right: .3em;
   line-height: 3em;
   align-content: start;
}
.input-line input{
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 1em;
    color: rgb(116, 116, 116);
 }



.btn{
   background-color:rgb(54, 135, 241) ;
   border: none;
   padding: .5em 1em;
   font-size: 1em;
   color: aliceblue;
   border-radius: 4px;
   align-self: end;
}
.btn:hover{
    background-color:rgb(1, 78, 179) ;
    border: 2px solid rgb(2, 35, 78);
    border: none;
    padding: .5em 1em;
    font-size: 1em;
    color: aliceblue;
    border-radius: 4px;
    align-self: end;
 }
 


.btns{
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  
}
.forgot{
    color: rgb(116, 116, 116);
    align-self: start;
    display: inline;
}