/*
Styles for the login form.
*/

div#login-main, #otp-verification-wrapper {
    margin: 0 auto;
    min-height: 255px;
    height: auto;
    padding-top: 20px;
    min-width: 220px;
    width: auto;
    max-width: 256px;
}

.login-form-entry-div input[type=text], .login-form-entry-div input[type=password] {
    margin-left: 0;
    height: 20px;
    width: 250px;
}

div#login-form {
    float: left;
    clear: both;
    width: 227px;
}

div#error-message {
    height: 10px;
    color: red;
    font-size: 10pt;
    padding-top: 5px;
}

.invisible {
    display: none
}

.visible {
    display: block;
}

div#login-right {
    height: 275px;
    width: auto;
}

.stretch {
    width: 100%;
    height: 100%;
}
.login-form-entry-div {
    margin: 10px 0;
}

.login-form-entry-div > label:first-child,
.login-form-entry-div > input[type=checkbox] + label {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    color: white;
    font-size: 10pt;
}

div#user-login label#remember {
    display: inline;
}


div#login-button-div {
    margin-top: 15px;
    float: left;
}

div#register-button-div {
    margin-top: 15px;
    margin-left: 10px;
    float: left;
}

div#user-login input[type=text], div#user-login input[type=password] {
    width: 250px;
    height: 20px;
    background-color: #414141;
    color: white;
}

.black-border {
    border: 1px solid black;
}

p.login-header {
    color: white;
    font-size: 16pt;
    font-weight: bold;
}

div#user-login input[type=submit],
div#user-login input[type=button] {
    width: 100px;
}

.user-login {
    background-color: #272727;
}

/* Styles for the error classes of jquery validation */

#username-error,
#password-error {
    font-size: 8pt;
    color: red;

    clear: both;
    display: block;
}

input.error {
    border: 1px dotted red;
}

input#login-button + a,
input#register-button + span {
    font-size: 8pt;
}

#login-button {
    width: 100px;
}

@media screen and (max-width: 912px) {
    #login-right img {
        display: none;
    }

    div#user-login {
        width: 79%;
        /*margin: 10px auto 10px auto;*/
        padding-left: 0;
        height: 255px;
        padding-top: 20px;
        margin-right: 10vw;
        margin-left: 10vw;
    }

    div#login-main {
        min-width: 0;
    }

    p.login-header {
        font-size: 10pt;
        width: 100%;
    }

    div#user-login input[type=text], div#user-login input[type=password] {
        width: 100%;
        font-size: 10pt;
    }

    div#user-login input[type=submit],
    div#user-login input[type=button] {
        width: 78vw;
    }

    input#login-button + a,
    input#register-button + span {
        font-size: 6.5pt;
        float: right;
        margin-top: 10px;
        margin-bottom: 22px;
    }

    .login-form-entry-div > label:first-child,
    div#user-login div > input[type=checkbox] + label {
        display: block;
        margin-top: 5px;
        margin-bottom: 5px;
        color: #a3a3a3;
        font-size: 8pt;
    }

}


