@charset "UTF-8";
/* CSS of our login page */

#login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 80px;
    background-color: var(--color-grey);
}

#login-wrapper div {
    padding: 0 !important;
}

#login-wrapper {
    border-top: 10px solid var(--color-grey);
    width: 36%;
    height: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -300px 0 0 -18%;
    border-radius: 2px;
    padding: 30px 8px 40px 8px;
    background-color: var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 5px 10px rgba(0,0,0,0.24);
}

#login-wrapper form {
    background-color: var(--color-white);
}

#login-wrapper p {
    text-align: left;
    font-size: 1em;
    text-transform: uppercase;
    color: var(--color-dark-grey);
}

#login-wrapper button {
    width: 100%;
    padding: 12px;
    font-size: .9em;
    border-radius: 10px;
    color: white;
    z-index: 3;
}

#login-wrapper img {
    margin-bottom: 10px;
}

.input-container {
    margin-bottom: 2em;
}

.input-container > input {
    line-height: 2em;
    height: 2em;
    font-size: 1.2em;
    border: none;
    border-bottom: 3px solid var(--color-grey);
}

.check-container {
    margin-bottom: 1em;
}

.logo-login {
    display: block !important;
    float: none;
    margin: 0 auto;
}

img.desktop-only {
    width: 300px;
}

img.mobile-only {
    width: 200px;
}

.input-container > input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    background-color: var(--color-white);
}

.input-container > input:focus {
    border-color: var(--color-fusion-red);
    background-color: var(--color-white) !important;
    outline: 0;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px var(--color-fusion-red);
}

.input-container > input {
    -webkit-box-shadow: 0 0 0 30px white inset;
    background-color: var(--color-white);
    outline: 0;
}

label.error {
    text-align: center;
    font-size: 1.2em;
    color: red;
    font-family: var(--font-univers);
}

div.alert {
    margin: 5px;
}

#forgot-password {
    position: absolute;
    width: 100%;
    height: 70px;
    background-color: var(--color-grey);
    bottom: 0;
    left: 0;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
}

#forgot-password label {
    line-height: 70px;
    cursor: pointer;
}

@media screen and (max-width: 950px) {
    #login-wrapper {width: 70%; margin: -300px 0 0 -35%;}
}

@media screen and (max-width: 600px) {
    #login-wrapper {width: 80%; margin: -300px 0 0 -40%; padding: 20px 5px 40px 5px;}
}
