@import url(./login.css);
@import url(./variables.css);
@import url(./utilities.css);
@import url(./components.css);


html{
    height: 100%;
    width: 100%;
}
body{
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: "Montserrat";
}
a {
    text-decoration: underline;
}
.flex-container {
    display: flex;
    height: 100%;
}

.div-form, .div-image{
    background: #F0F1F2;
    flex: 1; 
    height: 100%;
    position: relative;
    overflow: auto;
}


.form-container{
    height: 741px;
    width: 70%;
    margin: auto;
    padding: 70px;
}
.form-container-internal{
    background: var(--nveis-cores-secundrias-color-white, #FFF);
    position: relative;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    margin: auto;
    padding: 70px;
}
.div-image::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #004A86 0%, rgba(0, 74, 134, 0.00) 100%);
}
.background-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.ssp-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    background: var(--neutros-neutro-25, #FFF);
    z-index: 5;
}
.ssp-loading i {
    position: absolute;
    left: calc(50% - 28px);
    top: calc(50% - 28px);
    font-size: 56px;
    background: -webkit-linear-gradient(#eee, var(--marca-azulsenac-400));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ssp-loading i:not(.invisible i) {
    animation: rotate360 5s infinite linear;
}
@keyframes rotate360 {
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .div-image{
        display: none;
    }
}


