@font-face {
    font-family: 'Roboto';
    src: url(../libraries/font/Roboto-Regular.ttf);
}
@font-face {
    font-family: 'Roboto';
    src: url(../libraries/font/Roboto-Bold.ttf);
    font-weight: bold;
}
@font-face {
    font-family: 'Roboto';
    src: url(../libraries/font/Roboto-Medium.ttf);
    font-weight: 500;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
    font-size: 14px !important;
}
#accounts {
    height: 100vh;
    width: 100%;
    display: flex;
}
#bg {
    width: 60%;
    background: url('../img/login-bg.jpg');
    background-size: cover;
}
#form {
    width: 40%;
    padding: 50px 0;
}
.logo {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.logo img {
    width: 40%;
    max-width: 200px;
}
#form form {
    margin: 50px;
}
.form-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    color: #777;
}
#login > div {
    margin-bottom: 25px !important;
}
.password {
    position: relative;
}
form button {
    width: 100%;
}
#hide, #show {
    position: absolute;
    top: 13px;
    right: 12px;
    color: #555;
    cursor: pointer;
}
#hide {
    display: none;
}
#dynamic_form {
    color: #fff;
}

@media(max-width: 700px) {
    #bg {
        display: none;
    }
    #form {
        width: 100%;
    }
}

@media(max-width: 400px) {
    .logo img {
        width: 75%;
    }
    #form form {
        margin: 20px;
    }
}