@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
    margin: 0 auto;
    overflow: hidden;
}
a {
    text-decoration: none;
    display: contents;
}
.geral-login {
    display: flex;
    width: 100%;
    height: 100vh;
}
.banner {
    background: url(../images/login/login.jpg);
    width: 30%;
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: 200vh;
}
.tela-login {
    width: 70%;
    background: var(--CorPrimaria);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logotipo-img {
    height: 85px;
}
.formulario {
    display: flex;
    flex-direction: column;
    width: 85%;
}
.box-login {
    background: #ffffff;
    padding: 22px;
    width: 50%;
    height: 60%;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logotipo {
    text-align: center;
}
.input-text {
    background: #dbdbdb;
    border: none;
    padding: 18px;
    border-radius: 3px;
    transition: 0.40s;
}
.input-text:focus{
    outline: 0;
}
.input-text:hover {
    background: whitesmoke;
    transition: 0.40s;
}
.botao-sucesso {
    background: var(--CorPrimaria);
    padding: 15px 10px;
    margin-top: 13px;
    margin-bottom: 13px;
    border: none;
    color: #ffffff;
    font-size: 17px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border: solid 2px var(--CorPrimaria);
    transition: 0.40s;
}
.botao-sucesso:hover {
    transition: 0.40s;
    background: none;
    color:var(--CorPrimaria);
    border: solid 2px var(--CorPrimaria);
}
label {
    font-size: 17px;
    margin-bottom: 4px;
    margin-top: 4px;
    font-weight: 600;
    color: var(--CorPrimaria);
    font-family: "Poppins", sans-serif;
}
.recuperacao{
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.40s;
    width: 85%;
    color: #a8a8a8;
}
.recuperacao:hover{
    transition: 0.40s;
    color:#121214;
}
.senha-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.olho {
    position: absolute;
    right: 17px;
    font-size: 19px;
    color: #a8a8a8;
    cursor: pointer;
    transition: 0.40s;
}
.olho:hover{
    transition: 0.40s;
    color: #121214;
}
.erro {
    color: #ffffff;
    font-size: 16px;
    background: #D1334E;
    padding: 9px 22px;
    width: 50%;
    text-align: center;
    margin-top: 9px;
    border-radius: 3px;
    font-family: "Poppins", sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.40s;
}
.warning {
    left: 0;
    position: absolute;
    font-size: 58px;
    transform: rotate(347deg);
    color: #912134;
}
.sucesso {
    color: #ffffff;
    font-size: 16px;
    background: #19c03b;
    padding: 9px 22px;
    width: 50%;
    text-align: center;
    margin-top: 9px;
    border-radius: 3px;
    font-family: "Poppins", sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.40s;
}
.check {
    left: 0;
    position: absolute;
    font-size: 58px;
    transform: rotate(347deg);
    color: #108a29;
}

.spin{
    display: inline-block;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 390px){
    .warning{
        display: none;
    }
    .check{
        display: none;
    }
}

@media only screen and (max-width: 650px) {
    .geral-login{
        flex-direction: column;
    }
    .tela-login{
        width: 100%;
        height: 100%;
    }
    .box-login{
        width: 88%;
        padding: 0px;
    }
    .logotipo-img{
        height: 75px;
    }
    .erro{
        font-size: 12px;
        width: 80%;
        padding: 8px 0px;
    }
    .sucesso{
        font-size: 12px;
        width: 80%;
        padding: 8px 0px;
    }
}

@media only screen and (min-width: 650px) and (max-width: 1000px){
    .box-login {
        width: 75%;
    }
    .erro{
        font-size: 12px;
        width: 75%;
    }
    .sucesso{
        font-size: 12px;
        width: 75%;
    }
}