html * {
    font-family: 'ELO Sans Pro', sans !important;
	color: #545556;
}

body {
    font-size: 14px;
    height: 100vh;
    margin: 0;
    background: white;
}

.hidden {
    display: none;
}

.login-viewport {
    height: 100%;
    width: 100%;
}

.login-form-container {
    width: 100%;
    height: 100%;
    background-color: white;
}

.small-logo {
    height: 40px;
    margin-bottom: 24px;
    margin-top: 35px;
}

#eloLoginForm, #eloRecoveryForm, #eloUserRolesForm, .small-logo {
    padding-left: 40px;
    padding-right: 40px;
}

input.textfield, select {
    width: 100%;
    height: 32px;
    font-size: 14px;
    border: 1px solid #C0C1C2;
    border-radius: 2px;
    padding: 5px 8px;
    box-sizing: border-box;
}

input.button, input.textfield, select {
    width: 100%;
    margin: 6px 0;
    height: 32px;
}

input.button {
    margin-top: 12px;
	height: 32px;
    background-color: #4b4d52;
	border: 1px solid #4b4d52;
	border-radius: 2px;
    color: #fff;
	box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
	cursor: pointer;
    text-transform: uppercase;
}

input.button:hover {
  background: #555;
  border: 1px solid #555;
}

.messagebox {
    margin-top: 12px;
    font-size: .9em;
    height: 55px;
    background-color: #faf0d8;
    padding: 4px;
    overflow-y: auto;
}

.messagebox.elo-large {
    height: 220px;
    font-size: 1em;
}

.messagebox, .small-logo {
    margin-left: 40px;
    margin-right: 40px;
}

.professional .small-logo {
    background: white url('../images/ELOprofessional-logo.svg') no-repeat;
}

.enterprise .small-logo {
    background: white url('../images/ELOenterprise-logo.svg') no-repeat;
}

.elo-bottom-bar {
    height: 30px;
    position: absolute;
    bottom: -2px;
    width: 100%;
    background: transparent url('../images/bottom-bar.svg') no-repeat;
    background-size: cover;
}

.elo-recovery-links {
    font-size: .9em;
}

.elo-link-margin {
    margin-left: 8px;
}

input[type="checkbox"] {
    vertical-align: middle;
}

.elo-user-roles-headline {
    font-weight: bold;
    font-size: 18px;
    margin-top: 70px;
}

.elo-user-roles-helptext {
    margin-top: 10px;
    margin-bottom: 20px;
}

#eloUserRolesCheckboxContainer {
    height: 60px;
    overflow-y: auto;
    margin-bottom: 35px;
}

.elo-remember-checkbox-container {
    margin-bottom: 20px;
}

@media only screen and (min-width: 576px) {
    body {
	    background: #E7E8E9 url(../images/login-background.svg) no-repeat;
	    background-position: center center;
	    background-size: cover;
	}
	
    .login-form-container {
        width: 400px;
        height: 430px;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .elo-bottom-bar {
        width: 400px;
    }
    .small-logo {
        margin-top: 35px;
    }
    #eloUserRolesForm {
        padding-left: 30px;
        padding-right: 30px;
    }
    #eloUserRolesForm .button {
        margin-left: 50px;
        margin-right: 50px;
        width: calc(100% - 100px);
    }
    #eloLoginForm, #eloRecoveryForm {
        padding-left: 80px;
        padding-right: 80px;
    }
    .messagebox, .small-logo {
        margin-left: 80px;
        margin-right: 80px;
    }
}