form{
    padding-bottom:20px;
}
body {
    background-color: #f6f6f8;
    /*    background-image: url('/img/bg.png');*/
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
}
.top {
    height: 50px;
    background-color: #555555;
    padding: 0;
    margin: 0;
}

.flexCenter{
    display: flex; justify-content: center; 
}

.mainForm{
    margin:50px auto auto auto;
    display:inline-block;
    background-color: #ffffff;
    width:450px;
    z-index:9999;
    border:1px #DEDEDE solid;
    border-radius:10px;
    padding: 25px;
}

img.logo {
    display: block;
    max-height: 170px;
    margin: auto auto 20px auto;
}

ul li {
    list-style-type: none; 
    float:none;
}

ul.feedbackPanel {
    display: block;
    text-align: center;
    margin: 10px;
    line-height: 1.6;
    font-size: 14px;
    font-weight: normal;

    li {
        list-style-type: none; 
        float:none;
        margin: 2px;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-weight: normal;        

        .feedbackPanelERROR {
            color: #c0392b;
            background-color: #ffffff;
        }
    }
}


input.field {
    background: repeat-x scroll left top #FAFAFA;
    border-color: #c9c9c9;
    border-style: solid;
    border-width: 1px;
    border-radius:5px;
    padding: 4px 12px;
}

.button {
    background-color: #555555;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #f7feff;   
    height: 38px;
    overflow: visible;
    text-align: center;    
    margin: 10px 0;
    width: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding: 5px;
    line-height: 25px;

    :hover {
        background-color: #D0D0CE;
    }
}

input[type="submit"] {
    border-radius: 5px;
}

a {   
    color: #555555;
    font-style: normal;
    font-size: 14px;

    .button {
        box-sizing: border-box;
        line-height: 25px;
    }

    .forgot {
        cursor: pointer;
        display: inline-block;
        padding: 4px;    
        text-decoration: none;    
    }
}

.signup {
    padding: 4px;
    margin: 8px 0 0 0;
    text-decoration: none;

    a {
        padding-left:3px;
    }
}

.signout {
    margin: 30px 0;
    color: #555;
    text-align: center;
}

.options {
    text-align: center;
    color: #555;
    margin: 10px 0;
}

.rememberMe{
    display: inline-block;
    color: #555;

    input[type="checkbox"] {
        margin: 3px 3px 3px 4px;
    }
}

.sso {
    margin:50px 0;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;   
    width: 200px;
    margin: 20px auto;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
    margin-right: .75em;
}

.divider:not(:empty)::after {
    margin-left: .75em;
}

@media only screen and (max-width: 600px) {
    body {
        background-color: #ffffff;        
    } 

    .mainForm {
        border: none;
        border-radius: unset;
        font-size: 17px;
    }

    input[type="text"], input[type="password"] {
        font-size: 17px;
        height: 3rem;
    }

    .button {
        height: 3rem;
        font-size: 17px;
        padding: 10px;
    }

    .rememberMe {
        margin-top: 5px;
    }

    a {
        font-size: 17px;
    }
}