﻿body {
    padding: 0;
    margin: 0;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    color: white;
}



.div-login-img {
    width: 75%;
    height: 100%;
    background-color: #71b932;
    position: fixed;
    z-index: 0;
}

    .div-login-img .login-img {
        width: 100%;
        height: 100%;
        visibility: visible;
        display: block;
        display: none;
        object-fit: cover;
        object-position: left center;
    }

.login-container {
    /*    rgb(235, 60, 0)*/
    /*    background-color: #71b932;*/
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    /*    z-index: 0;*/
    opacity: 1;
    width: 100%;
    height: 100%;
}

.login-content {
    /*    background: #71b932;*/
    /*    fixed*/
    position: fixed;
    right: 0;
    /*    float: right;*/
    height: 100%;
    width: 25%;
    margin: 0;
    padding: 0;
    z-index: 1;
    overflow-y: hidden;
    overflow-x: hidden;
}

    .login-content .login-logo {
        position: absolute;
        /*        inset: 0;*/
        z-index: 1;
        /*        width: 150px;*/
        /*        margin: 40px 0 0 40px;*/
        height: 110%;
        width: 110%;
        background-size: cover;
        background-position: -20px -20px;
        background-repeat: no-repeat;
    }

    .login-content .login-form {
        margin-top: 30%;
        padding: 0px 30px 30px 30px;
        font-size: 14.4px;
        position: relative;
        z-index: 2;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: 80%;
    }

#btn-user, #btn-pass {
    height: 30px;
    padding-left: 10px;
    margin: 0;
    border: 1px solid #fdfdfd;
    z-index: 3;
    color: #131212;
    /*    350px*/
    width: 95%;
    margin-bottom: 7px;
}

.login-content .login-form #btn-login {
    background: #424848;
    border: 1px solid #fff;
    padding: 10px 15px 10px 15px;
    color: #fff;
    width: auto;
    cursor: pointer;
    margin-top: 30px;
}

.login-content .login-footer {
    position: absolute;
    bottom: 0px;
    padding-bottom: 10px;
    margin-left: 40px;
    font-size: 11px;
    color: #fff5f5;
}

    .login-content .login-footer a {
        text-decoration: none;
        padding-right: 20px;
    }

@media(max-width:900px) {
    #btn-user, #btn-pass {
        width: 90%;
    }
}

@media(max-width:575px) {
    .login-content {
        width: 100%;
    }
}

@media(min-width:576px) and (max-width: 767px) {
    .login-content {
        width: 45%;
    }

    .div-login-img {
        width: 55%;
    }
}

@media(min-width:768px) and (max-width: 991px) {
    .login-content {
        width: 35%;
    }

    .div-login-img {
        width: 65%;
    }
}
