*{  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body{
    width: 100%;
    height: 100%;
    background-color: rgb(40, 39, 38);
}
.head{
    background: linear-gradient(45deg, red, black ,red);
    width: 100%;
    height: 40px;
    align-content: center;
    text-align: center;
    color: aliceblue;
    font-size: 20px;
    font-weight: 600;
}
.log_box{
    width:50%;
    height: 50%;
    border: 1px solid;
    border-radius: 30px;
    box-sizing: border-box;
    box-shadow: 0px 0px 25px 0px rgb(201, 168, 3);
    border-color: rgb(201, 168, 3);
    margin: auto;
    margin-top: 10%;
    overflow: hidden;


}
.input_mail{
    width:90%;
    height: 40px;
    border: 1px solid;
    align-content: center; 
    margin: auto;
    margin-top: 40px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.input_pass{
    width:90%;
    height: 40px;
    border: 1px solid;
    align-content: center; 
    margin: auto;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.submit_box{
    width:90%;
    height: 40px;
    border: 1px solid;
    align-content: center; 
    margin: auto;
    margin-top: 20px;
    text-align: center;
    border: none;
}

input.email{
    background-color: gainsboro;
    width: 70%;
    height: 100%;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 5px;
    border-radius: 40px;
    text-align: center;
}

input.email:hover{
    background-color: mediumturquoise;
    color: black;
    font-size: 20px;
    font-weight: 600;
}
   
input.password{
    width: 70%;
    height: 100%;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 5px;
    border-radius: 40px;
    text-align: center;
}
input.password:hover{
    background-color: mediumturquoise;
    color: black;
    font-size: 20px;
    font-weight: 600;
}

#btn{
    background-color: rgb(201, 167, 15);
    width: 200px;
    height: 100%;
    border: 1px solid;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
}

#btn:hover{
       background: linear-gradient(45deg, red, black ,red);
       color: white;
}