html, body {
    font-family: "Open Sans",sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #484e54;
    background-image: url("../img/login_background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  /*  background: #FF5F6D;*/
}
.main-wrapper{
    /*background-color: rgba(72,78,84,0.95);
    height: 100%;
    width: 100%;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    overflow: auto;
}
.main {
    box-sizing: border-box;
    display: table;
    height: 100%;
    table-layout: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}
#login-content {
    display: table-cell;
    min-width: 380px;
    text-align: center;
    vertical-align: middle;
    z-index: 10000;
    width: 35%;
}
.title-logo {
    background-image: url(../img/login_logo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 12em;
    margin-bottom: 2em;
    text-align: center;
    width: 60%;
    /* margin-top: 8em; */
    margin-left: auto;
    margin-right: auto;
}
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    background-color: #f4f4f4;
    border: 1px solid #f4f4f4;
    border-radius: 2px;
    box-shadow: none;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;
    padding: 10px 20px;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
    width: 100%;
    line-height: 25px;
}
p.actions {
    clear: both;
    margin-right: -41px;
    text-align: right;
}
.action {
    background-color: transparent;
    border-radius: 2px;
    color: #ffffff;
    font-size: 1.3em;
    padding: 1em 3em;
    cursor: pointer;
    border: 1px solid;
    border-radius: 2px;
}
input, button, select, textarea {
    font-family: "Open Sans",sans-serif;

    -webkit-box-shadow: none !important; 
    -moz-box-shadow: none !important;
    box-shadow:none !important; 
    -webkit-transition: none !important; 
    -moz-transition:none !important;
    -o-transition:none !important;
    transition:none !important; 
}
span.codesian {
    font-size: 0.7em;
    color: #fff;
    padding-left: 3em;
}
img.codlogo {
    height: 5em;
}

input[type="password"], input[type="text"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    margin-bottom: 1em;
    color:#aeb0ba;
}

input::-webkit-input-placeholder { color: #aeb0ba; }
input:-moz-placeholder { color: #aeb0ba; }
input::-moz-placeholder { color: #aeb0ba; }
input:-ms-input-placeholder { color: #aeb0ba; }


input:hover, 
input:active, 
input:focus,
button:focus,
button:active,
button:hover
{
    outline:none !important;
    outline:0px !important;
    -webkit-appearance:none !important;

    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.change_password_wrapper{    
    text-align: right;
    color: #aeb0ba;
    cursor: pointer;
    display: inline-block;
    margin-right: 2em;
    height: 3.3em;
    font-size:0.8em;
}
.login_btn{
    display: inline-block;
}
.actions{
    text-align: right;
    /*height: 3.3em;
    margin-right: -2.4em;*/
}
.text_vertical_aligned{
    top:50%;
    transform: translateY(-50%);
    position: relative;
}
#user, #password{
    font-size: 1em;
    background-position: 1em 50%;
    background-repeat: no-repeat;
    background-size: 1.2em;
    text-indent: 3em;
    padding-left: 0;
    padding-right: 0;
    color: white;
}
#user{
    background-image: url("../img/login_user_placeholder.png");    
}
#password{
    background-image: url("../img/login_password_placeholder.png");
    background-position: 1.1em 40%;
    background-size: 0.9em;
}
.invalid_login{
    color: #e04c62;
    font-size: 1.2em;
    margin-bottom: 2em;
}
.display_none{
    display: none !important;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
    body{
        font-size: 13px;
    }
    .left_margin, .right_margin{
        width:30% !important;
    }
    #login-content{
        width: 40%;
    }
    .title-logo {
        /*margin-bottom: 0;*/
    }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
    body{
        font-size: 13px;
    }
    .left_margin, .right_margin{
        width:25% !important;
    }
    #login-content{
        width: 50%;
    }
    .title-logo {
        margin-bottom: 0;
        height: 10em;
    }
}
@media screen and (min-width: 400px) and (max-width: 599px) {
    body{
        font-size: 12px;
    }
    .left_margin, .right_margin{
        width:20% !important;
    }
    #login-content{
        width: 60%;
    }

    .actions{
        /*text-align: center;*/
    }
    .title-logo {
        margin-bottom: 0;
        height: 9em;
    }
}

@media screen and (max-width: 399px) {
    body{
        font-size: 11px;
    }
    .left_margin, .right_margin{
        width:15% !important;
    }
    #login-content{
        width: 70%;
    }
    .actions{
       /* text-align: center;*/
    }
    .title-logo {
        margin-bottom: 0;
        height: 7em;
    }
}



