@font-face {
    font-family: Nunito;
    src: url(../font/Nunito-Regular.ttf);
    src: url(../font/Nunito-Regular.ttf) format("ttf"),
        url(../font/Nunito-Regular.ttf) format("truetype");
}

html,
body {
    padding: 0px;
    margin: 0px;
}

.container-login {
    height: 100vh;
    display: flex;
    flex-direction: row;
}

.container-admin {
    height: 100vh;
    display: flex;
    flex-direction: row-reverse;
}

.img-area {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6777ef;
    overflow: hidden;
}

.login-area {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

input:focus {
    border-width: 0px;
}

.login-box {
    width: 300px;
}

.login-area input {
    display: block;
    width: 100%;
    padding: 5px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}

.login-box > h2,
h1 {
    color: #6777ef;
}

.btn-login {
    border: 1px transparent solid;
    display: block;
    width: 100%;
    background-color: #6777ef;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    margin-top: 20px;
}

@media screen and (max-width: 991px) {
    .img-area {
        display: none;
    }

    .login-area {
        width: 100%;
    }
}

.img-area img {
    width: 450px;
}
