
.login{
    background-image: url("img/login.jpg");
    background-repeat: no-repeat;
}
.login-box{
    margin-top: 100px;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}
.login-box input{
    width: 100%;
    border: 2px solid #8049BE;
    border-radius: 15px;
    padding: 12px;
    text-align: right;
    margin-top: 20px;
}
.login-btn {
    width: 100%;
    background: #8049BE;
    border-radius: 15px;
    padding: 5px 45px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Mj_Beirut Heading', tahoma, Arial;
}
::placeholder {
    color: #8049BE;
    opacity: 0.7; /* Firefox */
    font-family: yekan;
    font-size: 20px;
    margin-right: 10px;
}
@media only screen and (max-width: 600px) {
    .login-box{
        margin-right: 25px;
        margin-left: 25px;
    }
}