/*** Login Page - Styles ***/

html {
    position: relative;
    min-height: 100%;
}

body {
    color: #000;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 30px;
}

.login-container-wrapper {
    position: relative;
    margin-top: 10%;
    /*margin-top: 13%;*/
}

.login-container {
    background: #f7f7f7;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    padding: 15px;
}

.logo-container {
    margin-bottom: 15px;
}

.logo-container img {
    width: 100%;
}

.login-form-container input[type="text"], .login-form-container input[type="password"] {
    border-radius: 0;
}

.btn-login-button {
    background: #50C0E9;
    color: #f9f9f9;
    font-size: 18px;
}

.btn-login-button:hover {
    opacity: 1;
}

footer{
    height: 30px;
    position: absolute;
    /*background: #f9f9f9;*/
    background: #f0f0f0;
    bottom: 0;
    width: 100%;
    font-size: 11px;
    border-top: 1px solid #dedede;
}

.footer-section {
    padding: 6px 0;
}


