@import url('https://fonts.googleapis.com/css?family=Aldrich');

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #eceff1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    
    overflow-x: hidden;
    overflow-y: auto;

    font-family: 'Aldrich', sans-serif;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #555;

    font-family: 'Aldrich', sans-serif;
}

.login .navbar {
    background: #fff;
}

.login .navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
}

.login .navbar-logo img {
    height: 30px;
}

.login .navbar li > a {
    color: #fff !important;
    background: #64B2D4;
}

.login .navbar li:hover > a {
    color: #fff !important;
    background: #7BBDDA;
}

.login .logo {
    margin-top: 35px;
    border-radius: 50%;
    height: 50px;
}

.login h1 {
    margin-top: 35px;
    margin-bottom: 25px;
    font-size: 25px;
}

.login form {
    min-width: 350px;
    max-width: 350px;
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background: #fff;
    padding: 40px 20px;
    display: inline-block;
    text-align: justify;
    font-size: 14px;
    outline: none;
    -moz-box-shadow: 0 0 15px #c0c0c0;
    -webkit-box-shadow: 0 0 15px #c0c0c0;
    box-shadow: 0 0 15px #c0c0c0;
}

.login button[type="submit"] {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #64B2D4;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #64B2D4; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#64B2D4, #64B2D4); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#64B2D4, #64B2D4); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#64B2D4, #64B2D4); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#64B2D4, #64B2D4); /* Standard syntax */
}

.login button[type="submit"]:hover {
    border-color: #64B2D4;
    background: #64B2D4;
    background: -webkit-linear-gradient(#64B2D4, #64B2D4);
    background: -o-linear-gradient(#64B2D4, #64B2D4);
    background: -moz-linear-gradient(#64B2D4, #64B2D4);
    background: linear-gradient(#64B2D4, #64B2D4);
}

.login button[type="submit"]:focus {
    outline: none;
    -moz-box-shadow: 0 0 10px #64B2D4;
    -webkit-box-shadow: 0 0 10px #64B2D4;
    box-shadow: 0 0 10px #64B2D4;
}

.login button[type="submit"]:active {
    color: #fff;
    border-color: #64B2D4;
    background: #64B2D4;
    background: -webkit-linear-gradient(#64B2D4, #64B2D4);
    background: -o-linear-gradient(#64B2D4, #64B2D4);
    background: -moz-linear-gradient(#64B2D4, #64B2D4);
    background: linear-gradient(#64B2D4, #64B2D4);
}

.login .footer {
    border-top: 1px solid #d0d0d0;
    margin-top: 45px;
    padding-top: 25px;
    font-size: 9px;
}

.login .login-error {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 13px;
    min-width: 350px;
    max-width: 350px;
    width: 100%;
    color: #cc0000;
}

.login .login-info {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 13px;
    min-width: 350px;
    max-width: 350px;
    width: 100%;
    color: #2E64FE;
}

.ajax-loader { 
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
    display: none;
    z-index: 11;
}

.dark {
    background: black;
    text-align: center;
    padding: 15px 25px;
    opacity: 0.6;
    color: #fff;
}

.maersk {
    background: #64B2D4;
    text-align: center;
    padding: 15px 25px;
    opacity: 0.9;
    color: #fff;
}