body {
    background-image: url(/static/images/home/uncompressed/road.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#loginPage__container {
    max-width: 400px;
    margin:12vh auto 20vh auto;
    padding:40px 60px;
    background-color: var(--white);
    border: solid 1px var(--gray-100);
    box-shadow: 0 5px 25px var(--gray-overlay-100);
}

#loginPage h1 {
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
    padding-bottom:10px;
    margin:0 auto 10px auto;
    font: 700 23px merriweather, palatino, serif;
    font-style: italic;
}

#loginPage__introMessage {
    font: 16px merriweather, palatino, serif;
    line-height: 1.63;
    text-align: center;
    color: var(--gray-500);
}

#loginPage__form {
    text-align:center;
}

#loginPage__facebookProcessingButton {
    display:none;
}

#loginPage__emailAddressField, #loginPage__passwordField {
    -webkit-appearance: none;
    padding: 15px;
    font: 14px poppins, lucida, sans-serif;
    border: 1px solid var(--gray-200);
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    margin:10px 0 0 0;
}

#loginPage__rememberMe {
    text-align:left;
}

#loginPage__submitButton, #loginPage__submittingButton {
    margin:20px auto;
    width: 245px;
}
.login__register {
    font-family: poppins,arial, sans-serif;
    font-size: 14px;
    display: block;
    text-align: center;
}

#loginPage a {
    font: 14px poppins,arial, sans-serif;
    margin-top: 2px;
    display: block;
}

#loginPage a:hover {
    color: var(--blue-300);
}

/* FACEBOOK */
#loginPage__facebook {
    text-align:center;
    padding-top:10px;
}
#loginPage__facebook button {
    width: 245px;
    height: 35px;
    font: 600 14px poppins, lucida, arial, sans-serif;
    text-align: center;
    color: var(--white);
    background-color: #3b5998;
    border:0;
}
#loginPage__facebook button:hover {
    background-color: #2f4779;
}
#loginPage__facebook img {
    width: 20px;
    vertical-align: sub;
}
#loginPage__facebookVerify {
    font: 14px merriweather, lucida, sans-serif;
    font-style: italic;
    line-height: 1.5;
    color: var(--red-200);
}

/* APPLE */
#loginPage__apple {
    text-align:center;
    padding-top:10px;
}
#loginPage__apple button {
    width: 245px;
    height: 35px;
    font: 600 14px poppins, lucida, arial, sans-serif;
    text-align: center;
    color: var(--white);
    background-color: #000000;
    border:0;
}
#loginPage__apple button:hover {
    background-color: #333333;
}
#loginPage__apple img {
    width: 20px;
    vertical-align: sub;
}
#loginPage__appleProcessingButton {
    display:none;
}
#loginPage__appleVerify {
    font: 14px merriweather, lucida, sans-serif;
    font-style: italic;
    line-height: 1.5;
    color: var(--red-200);
}

#loginPage__noVerify {
    font: 14px merriweather, lucida, sans-serif;
    font-style: italic;
    line-height: 1.5;
    color: var(--red-200);
    display:none;
}

#loginPage__separator {
    margin-top:10px;
    text-align:center;
    position: relative;
}
#loginPage__separator:before {
  border-top: 1px solid var(--gray-200);
  content: "";
  position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
#loginPage__separator span {
    font: 14px poppins, lucida, arial, sans-serif;
    text-align: center;
    padding:0 10px;
    background-color: var(--white);
    z-index: 4;
    position: relative;
}

#loginPage__rememberMe {
    margin-top:10px;
}
#loginPage__rememberMeField {
    height:16px;
    width:16px;
    border-radius:0;
}
.loginPage__rememberMeLabel {
    font: 14px poppins, lucida, arial, sans-serif;
    color: var(--gray-500);
}

/* mobile portrait */
@media only screen and (max-width : 767px) and (orientation : portrait) {
    #loginPage {padding: 0 15px;}
    #loginPage__container { padding: 40px 15px; margin-bottom: 7vh;}
    #loginPage__emailAddressField, #loginPage__passwordField {font-size: 16px;}

    body { background-image: none; }

    #loginPage__container {
        width: 100%;
        margin:0;
        padding:0;
        background-color: var(--white);
        border: 0;
        box-shadow: none;
    }

}
