/*.content {
    display: flex;
    flex-direction: column;
}*/

.top {
    height: 100px;
    text-align: center;
    background: url('/userAdmin/public/img/Enigio/login-page-curve.svg') top center no-repeat;
    background-size: auto 100px;
}

.logo {
    height: 100px;
    background: var(--v-logo) center no-repeat;
    background-size: 300px 60px, contain;
}

h2 {
    margin: 0 0 30px 0;
    font-weight: 400;
    letter-spacing: 1.1px;
}

h1 {
    margin: 1em;
}

p, input {
    font-size: 16px;
}

p,
h2,
h1,
input,
a,
div {
    font-family: "Barlow", sans-serif;
    color: #fff;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.form-container {
    border-left: 2px solid #fff;
    width: 350px;
    margin: 3rem auto;
    /*position: relative;
    left: -2rem;*/
    padding: 3rem 0 3rem 50px;
}


input[type='email'],
input[type='password'],
input[type='text'],
input[type='submit'] {
    outline: none;
    background-color: var(--v-tertiary-base);
    color: var(--v-primary-lighten1);
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    margin: 10px 0 5px 0;
    box-sizing: border-box;
    width: 100%;
}

input[type='submit'] {
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 30px;
    font-weight: 500;
    color: #fff;
}

input[type='submit']:hover {
    cursor: pointer;
    opacity: 0.8;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--v-primary-lighten1);
    opacity: 0.6;
    /* Firefox */
}

input[type='submit'] {
    background-color: var(--v-secondary-base);
}

input[type='button'] {
    background: transparent;
    border: 1px solid #fff;
    text-align: center;
    cursor: pointer;
    margin: 10px;
    padding: 3px 7px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: #fff;
    transition: all 5000s ease-in-out 0s;
}

label {
    padding-left: 20px;
    font-size: 18px;
    cursor: pointer;
}
label:nth-of-type(2) {
    margin-top: 10px;
    display: block;
}

.social-login-container {
    margin: 0 auto;
    text-align: center;
    padding: 0 25px;
}

.social-login-container a {
    display: block;
    border: 1px solid #fff;
    margin: 10px;
    padding: 10px 15px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    border-radius: 20px;
}

.social-login-container a:hover {
    background: #fff;
    color: #143C56;
}

.social-login-container a:hover .fa-google {
    color: #F44336;
    transition: all .6s ease-in-out;
}

.social-login-container a:hover .fa-facebook-official {
    color: #3A5795;
    transition: all .6s ease-in-out;
}

.social-login-container a:hover .fa-windows {
    color: #01AEF3;
    transition: all .6s ease-in-out;
}

.social-login-container a:hover .fa-yahoo {
    color: #400090;
    transition: all .6s ease-in-out;
}

.divider {
    text-align: center;
}


/*
google: #F44336
yahoo: #400090
facebook: #3A5795
*/
.social-login-container a span {
    /*margin-left: 35px;*/
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.container {
    text-align: center;
}

.error {
    color: red;
}
#alert {
    padding: 10px;
    color: orangered;
    height: 1em;
    overflow: visible;
    white-space: nowrap
}

#mask {
    display: none;
    background-image: url("../img/loader_200px.svg");
    background-color: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 100;
    width: 98%;
    height: 98%;
    position: absolute; 
}

.submit-container {
    text-align: center;
    margin-top: 20px;
}

a.btn-social {
    text-align: center;
}