html,
body, #app, main {
    height: 100%;
    font-family: "Roboto", sans-serif;
    background: url('../images/login-bg.webp') no-repeat 0 0;
    /* background-color: #46ACE1 !important; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.form-control {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border: 1px solid #909090;
    background-color: #000000;
    color: #FFFFFF;
    padding-top: 12px;
    padding-bottom: 12px;
}
.form-control:focus {
    background-color: #000000;
    color: #FFFFFF;
}
.fc-email {
    border-bottom: 0;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.fc-passwd {
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.form-control::-webkit-input-placeholder {
    /*color: rgba(64, 64, 64, 0.69);*/
    color: #FFFFFF;
    font: normal 14px/14px Roboto;
}
a {
    color: #ffffff;
}
a:hover {
    color: #ffffff;
    text-decoration: none;
}

.btn-primary {
    color: #ffffff;
    background-color: #54A677;
    border-color: rgb(84, 166, 119);
    border-radius: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    color: #ffffff;
    background-color: rgba(84, 166, 119, 0.8);
    border-color: rgba(84, 166, 119, 0.8);
}

#logo {
    width: 100%;
    margin-top: 20vh;
    margin-bottom: 12vh;
}
.btn-login {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: 2vh;
    font-family: "Roboto Bold", sans-serif;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.forgot-wrapper {
    padding-top: 9vh;
}
.forgot-password {
    font-size: 12px;
}
.forgot-password a {
    text-decoration: none;
}


@media (max-width: 768px) {
    .login-wrapper {
        margin-top: 0;
    }
    .forgot-wrapper {
        padding-top: 60px;
    }
    #logo {
        width: 120px
    }
}
