*
{
    box-sizing: border-box;
}
@font-face
{
    font-family:khatkhati;
    src: url("../files/fonts/me/khatkhati.ttf");
}
@font-face
{
    font-family:nazanin;
    src: url("../files/fonts/me/nazanin.ttf");
}
html,body
{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: url("../files/images/bg.png");
}
.container
{
    width: 85%;
    text-align: center;
    margin: auto;
    height: 50%;
    font-size: 1rem;
    position: relative;
    top: 25%;
}
.gonde
{
    font-size: 1.4rem;
}
.remember
{
    text-align: left;
    position: relative;
    top: 10px;
    width: 60%;
    height: 40px;
    margin: auto;
}
#login,#badLogin
{
    padding-top: 20px;
    text-align: center;
    width: 30%;
    height: 100%;
    font-family:khatkhati;
    margin: auto;
    background: rgba(100, 200, 200, 1);
}
#badLogin
{
    background: rgba(200, 50, 50, 1);
}
input[type='text'],input[type='password']
{
    display: block;
    font-family:nazanin;
    font-size:1.1rem;
    margin: 10px auto auto;
    width: 60%;
    height: 40px;
    padding:7px;
    border: 1px solid transparent;
    transition:all .4s;
}
input[type='text']:hover,input[type='password']:hover
{
    border: 1px solid rgb(120,120,120);
}
input[type='text']:focus,input[type='password']:focus
{
    border: 1px solid rgba(70, 70, 240, 1);
}
input[type='submit']
{
    display: block;
    margin: 10px auto auto;
    width: 60%;
    height: 40px;
    border:0;
    padding:7px;
    background: rgba(100, 150, 220, 1);
    transition:all 1s;
}
input[type='submit']:hover
{
    background: rgba(70, 70, 240, 1);
    cursor: pointer;
}
input[type='button']
{
    display: block;
    margin: 10px auto auto;
    width: 60%;
    height: 40px;
    border:0;
    padding:7px;
    background: rgba(220, 100, 100, 1);
    transition:all 1s;
}
input[type='button']:hover
{
    background: rgba(250, 60, 60, 1);
    cursor: pointer;
}
@media screen and (max-width:1200px ) {

    .container{
        width:90%;
    }
    #login,#badLogin{
        width:80%;
    }
}