

.content{
    width: 100%;
    /* height: 100%; */
    height: calc(700px - 192px);
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.content h1{
    /* text-align: center; */
    margin:0px 0px 30px 27% ;
}

.reset-form{
    display: flex;
    justify-content: center;
}

form{
    padding:50px 30px;
    border:1px solid #1EBED7;
    width: 50%;
}

.email input,label,button{
    margin-left: 5%;
    display: block;
}

.email label{
    font-size: 25px;
}

.email input{
    font-size: 20px;
    border:1px solid #E6E8EA;
    margin-top: 10px;
    width: 80%;
    height: 35px;
    margin-bottom: 30px;
}

.submit{
    font-size: 20px;
    color: #ffffff;
    background: #1EBED7;
    border:1px solid #1EBED7;
    width: 40%;
    height: 35px;
}




/* 


content media queries


*/




@media(max-width:1200px){
    .content{
        height: calc(1366px - 300px);
    }
    .content h1{
        margin:0px 0px 30px 12% ;
    }
    form{
        width: 80%;
    }
}
@media(max-width:768px){
    .content{
        height: calc(1024px - 200px);
    }
    .content h1{
        margin:0px 0px 30px 13% ;
    }
}
@media(max-width:600px){
    .content{
        height: calc(736px - 210px);
    }
    .content h1{
        text-align: center;
        margin:20px 0px;
    }

    form{
        width: 90%;
    }
    .email input,.submit{
        width: 100%;
    }
    .email input,label,button{
        margin-left:5px;
    }
    input{
        font-size: unset;
    }
}
@media(max-width:375px){
    .content{
        height: calc(700px - 192px);
    }
}
@media(max-width:360px){
    .content{
        height: calc(640px - 192px);
    }
    .content h1{
        font-size:27px ;
    }
}
@media(max-width:320px){
    .content{
        height: calc(568px - 170px);
    }
    .content h1{
        font-size:27px ;
        margin-top: 30px;
    }
    form{
        width: 95%;
    }
    .email input,label,button{
        margin-left:0px;
    }
}



/* 


content landscape media queries


*/


@media(max-height:500px) and (orientation:landscape){
    .content{
        margin: 80px auto;
        height: calc(500px - 192px);
    }
}


