
/* Default behavior for all resolutions (1920px and above) */

.login-container, .images-container {
    width: 50%; /* Split equally */
}

/* For 1440px and 1280px resolutions */
@media (max-width: 1440px) {
    .login-container {
        width: 33.33%; /* 1/3 of the screen */
    }
    .images-container {
        width: 66.66%; /* 2/3 of the screen */
    }
}


.container {
    margin: 80px auto;
    width: 640px;
}
.login {
    position: relative;
    margin: -70px auto auto;
    padding: 18px 18px 18px;
    width: 310px;
    background: white;
    -webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.login h1 {
    margin: -20px -20px 21px;
    text-align: center;
    background-color: #0B4D4B;
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    border-top: 1px solid #FFFFFF;
    color: #FFFFFF;
    cursor: inherit;
    font-family: Tahoma;
    font-size: 14px;
    font-weight: bold;
    height: 27px;
    line-height: 27px;
}
.login p {
    margin: 20px 0 0;
}
.login p:first-child {
    margin-top: 0;
}
.login input[type=text], .login input[type=password] {
    width: 278px;
}
.login .remember_me {
    float: left;
    line-height: 31px;
    font-size: 12px;
    color: #777;
    cursor: pointer;
    font-family: arial;
}
.login .remember_me input {
    position: relative;
    bottom: 1px;
    margin-right: 4px;
    vertical-align: middle;
}
.login-help {
    margin: 20px 0;
    font-size: 11px;
    color: #777;
    text-align: center;
}
.login-help a {
    color: #777;
    text-decoration: none;
}
.login-help a:hover {
    text-decoration: underline;
}
.authenticationButtonsContainer {
    padding: 5px;
    text-align: center;
}
.loginButton{
    margin: 10px 10px 0;
}
.cancelButton{
    margin: 10px;
}
.login input {
    font-family: Arial;
    font-size: 13px;
}
.login input[type=text], .login input[type=password] {
    margin: 5px;
    padding: 0 10px;
    height: 34px;
    color: #404040;
    background: #FFFFC0;
    border: 1px solid;
    border-color: #c4c4c4 #d1d1d1 #d4d4d4;
    border-radius: 2px;
    outline: 5px solid #eff4f7;
    -moz-outline-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}
.login input[type=text]:focus, input[type=password]:focus {
    border-color: #7dc9e2;
    outline-color: #dceefc;
    outline-offset: 0;
}

.login input[type=submit]:active {
    background: #cde5ef;
    border-color: #9eb9c2 #b3c0c8 #b4ccce;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.change_user_password_main_div{
    height: 300px;
}
.signUpLink {
    margin: 15px 5px 20px 10px;
    text-align: center;
    text-decoration: underline;
    float: left;
    color: #808080;
    font-family: Tahoma;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    cursor: pointer;
}
