/* LOGIN FORM */
@import url(fonts-ll.css);

body.login {
    background: #fff;
    font-family: 'RobotoReg';
    font-weight: 200;
    color: #212121;
    font-size: 1em;
}

#colM {
    background: #000;
    width: 30em;
    position: absolute;
    left: 30%;
    top: 0;
    display: block;
    clear: both;
    align-content: center;
    height: 100%;
    background-image: linear-gradient(188deg, #000 0%, #474747 100%);
    background-color: transparent;
}

.login #header {
    height: auto;
    padding: 5px 16px;
    background: none;
    border: none;
    position: absolute;
    margin: auto;
    top: 20%;
    left: 10%;
}

.login #header h1 {
    font-size: 18px;
}

.login #header h1 a {
    color: #2e2e2e;
}

.login #content {
    padding: 20px 20px 0;
}

.login #container {
    position:  absolute;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 22em;
    min-width: 150px;
    margin: auto;
    top: 40%;
    left:  8%;
    padding: 30px;

}

.login #content-main {
    width: 100%;
    color: #929394;
}

.login form input{
    border: none;
}


.login .form-row label {
    padding-right: 0.8em;
    line-height: 2em;
    font-size: 1em;
    clear: both;
    border-bottom: solid 1px #212121;    
}

.login span.help {
    font-size: 10px;
    display: block;
}

.login .submit-row {
    clear: both;
    margin: 0;
    border: none;
    background: none;
    text-align: left;
}

.login .password-reset-link {
    text-align: center;
}

.login .password-reset-link a {
    text-decoration: none;
    #text-transform: uppercase;
    color: #ff00bd;
}

.login .password-reset-link a:link, .login .password-reset-link a:visited {
    color: #212121;
}


.login .password-reset-link a:focus, .login .password-reset-link a:hover {
    color: #ff00bd;
}

.login .password-reset-link a:focus, .login .password-reset-link a:hover {
    text-decoration: none;
}


.login form, .login form p{
    colour: #929394;
}

.login form input{
    border-bottom: solid 1px #929394;
    colour: #929394;
    font-family: "RobotoReg";
    /*font-weight: 300;*/
}

.login form input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: #fff !important;
    color: #929394 !important; 
    border-bottom:  solid 1px #929394;
}

.login form input[type=text], .login form input[type=password], .login form input[type=text]:focus{    
    border-radius: 4px;
    margin: 0 15px;
    color: #929394;
    background-color: #fff;
    clear: both;
    padding: 8px;
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.login input[type=submit], input[type=button], .submit-row input {
    background: #0bb0fc;
    border-radius: 5px;
    padding: 4px;
    border: none;
    color: #fff;
    cursor: pointer;
    margin: auto;
    font-size: 14px;
    width: 100%;
    font-weight: 400;
    padding: 10px 0;
}


