main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Naskh Arabic", serif;
}
.login{
    background-color: rgb(208, 208, 208);
    height: auto;
    width: 40%;
    border-radius: 20px;
}
.header_login{
    text-align: center;
    color: rgb(32, 30, 30);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #777;
}
.main_login{
    margin: 10px 20px;
}
label{
    color: rgb(28, 28, 28);
    font-size: 18px;
}
input{
    margin: 10px 10px;
    width: 90%;
    padding: 10px 10px;
    border: 0;
    outline: 0;
    border-radius: 10px;
    background-color: rgb(234, 233, 233);
}
form input:focus{
    box-shadow: 0px 0px 10px #555;
}
input::placeholder{
    color: rgb(77, 76, 76);
    font-size: 14px;
     font-family: "Noto Naskh Arabic", serif;
}
.btn{
    margin: 20px 10px;
    width: 94%;
    padding: 10px 0px;
    border: 0;
    background-color: #305a66;
    font-size: 18px ;
    font-weight: bold;
    cursor: pointer;
    color: white;
}
.btn:hover{
    background-color: #172b31;
}
.sinup{
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    a{
        color: rgb(21, 20, 20);
    }
}
.sinup a:hover{
    text-decoration: underline;
}
@media screen and (max-width:1000px){
    .login{
        width: 85%;
    }
}
