/*
Here you can write your own CSS styles.
*/
body {
    font-family: helvetica,arial,verdana,sans-serif;  
    font-size: 14px;
    height: 100vh;
    margin: 0;
}

#elo-logo {
    width: 0;
}

#form-container {
    width: 100%;
    margin: 50px 10px 0 10px;
}
.hidden {
    display: none;
}

label {
    display: block;
    margin-right: 50px;
    margin-bottom: 5px;
}

input, select {
    padding: 5px;
    border-color: silver #d9d9d9 #d9d9d9;
    border-width: 1px;
    border-style: solid;
    width: 90%;
    margin-bottom: 5px;
}

input[type="submit"] {
    background-color: #3892d3;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px;
    cursor: pointer;
    width: 40%;
}

input[type="submit"]:hover {
    background-color: #3281c2;
}
input:invalid {
    border-color: red;
}
h2 {
    font-weight: 100;
}

input {
    margin-bottom: 10px;
}

input:focus {
    border-color: #3892d3;
}

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

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

.small-logo {
    background: white url('../images/ELOenterprise_300.png') no-repeat;
    width: 300px;
    padding: 30px 270px 30px 30px;
}

.linkMargin {
    margin-left : 8px;
}

.messageWithoutHeadline {
    padding-top: 20px;
}

@media only screen and (min-width: 1024px) {
    #container {
        height: 100%;
        width: 100%;
        margin: 0;
    }

    .professional #elo-logo {
        background-image: url('../images/login-background-professional.jpg');
    }
    
    .enterprise #elo-logo {
        background-image: url('../images/login-background-enterprise.jpg');
    }
    
    #elo-logo {
        height:100%;
        width: 75%;
        float: left;
        background-color: white;
        background-image: url('../images/login-background-enterprise.jpg');
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: left top;
    }

    #form-container {
        height: 100%;
        width: 24%;
        float: right;
        margin: 0;
    }

    #eloLoginForm, #eloRecoveryForm {
        margin-top: 40%;
    }
}
