body {
    background-color: #ffffff;    
}

.logoContainer {
    margin:0;
    padding: 10% 0 0 0;
    text-align: center;
    background: #3c3f45;
}

.logoWrap {
    width: 200px;
    height: 156px;
    margin: 0 auto;
}

.logo {
    margin: 67px auto 0 auto;
}

.logIn {
    padding: 100px 0 0 0;    
}

.btn-logIn {
    background-color: #00b2b3;
    border-color: #00b2b3;
    color: #ffffff;
}

.btn-logIn:hover {
    background-color: #ffffff;
    border-color: #00b2b3;
    color: #00b2b3;
}

.logInFooter{
    height: 34px;
}

.form-group .input-group .fa {
    display: table-cell;
}

.rememberMe {
    float: left;    
}

/* Custom checkboxes 
--------------------*/
input[type=checkbox] {
     position: relative;
}

label>input[type=checkbox]:before {
    position: absolute;
    background-color: #FFFFFF;
    height: 100%;
    width: 100%;
    font-family: FontAwesome;
    display: inline-block;
    content:"\f096";
    letter-spacing: 10px;
    line-height: 18px;
    color: #676a6c;
}

label>input[type=checkbox]:checked:before {
    font-family: FontAwesome;
    display: inline-block;
    content:"\f046";
    letter-spacing: 5px;
    color: #00b2b3;
}


/* transitions
-----------------*/
.btn-logIn, .form-control {
    -webkit-transition: 0.3s ease-in-out;
    transition: .3s ease-in-out;    
}