@font-face {
    font-family: "Tajawal";
    src: url("../fonts/Tajawal-Light.ttf");
}
*{
    margin:0px;
    padding:0px;
    font-family: "Tajawal";
    
}
.container{
    position:absolute;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.login-con{
    width:450px;
    height:70%;
    box-shadow:0 5px 10px 5px #ddd;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    border:1px solid #333;
    padding: 5px;
}
.login-con-item{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
form{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap: wrap;
}
.filed{
    width:95%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 10px 0px;
}
.remember-me{
    width: 90%;
    margin: 10px;
}
input{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    font-size: 18px;
    padding: 0px 10px;
    outline:none;
    transition: 0.2s;
}
input:hover{
    border: 1px solid #333;
}
label{
    cursor: pointer;
}
button{
    width: 100%;
    height: 50px;
    background-color: black;
    color:white;
    font-size:15px;
    cursor: pointer;
    transition:0.2s;
}
button:hover{
    background: white;
    color: black;
    border: 1px solid black;
}
@media screen and (max-width:740px){
    .login-con{
        width:450px;
    }
}