.main-login{
    display: grid;
    height: 80%;
}
.container-principal{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.container-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-wrap .login {
    width: 513px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 4px solid;
    border-color: var(--cor-roxa-principal);
    justify-content: center;
}

.login .logoGoverno {
    display: flex;
    justify-content: center;
    margin: 17px;
}

.login .logoDestaque{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.login .h3-admin{
    font-family: "Inter-Medium", Helvetica;
    font-weight: 500;
    color: var(--cor-roxa-principal);
    font-size: 26px;
}

.h3-admin{
    text-align: center;
}

.login .h3-admin span {
    font-weight: bold;
}

.login .linha {
    width: 245px;
    height: 1px;
    background-color: var(--cor-preto);
}

.login form{
    margin-top: 40px;
    padding: 0 70px;
}

.login .field {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    background-color: var(--cor-rosa-fraco);
    border-radius: 4px;
    padding: .5em 1em;
}

.input-icon {
    height: 1em;
    width: 1em;
    fill: var(--cor-roxa-principal);
}

.input-field {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: var(--cor-preto);
}
.field input:focus::placeholder {
    opacity: 0;
    transition: opacity .3s;
}

.btn-login {
    margin: 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: .8em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding: 0.6em 1.2em;
    background-color: var(--cor-roxa-principal);
    color: #ffffff;
    box-shadow: 0 8px 24px 0 rgb(255 235 167 / 20%);
    transition: all .3s ease-in-out;
    width: 50%;
}
.btn-login:hover {
    background-color: var(--cor-roxa-principal);
    color: var(--cor-branco);
    box-shadow: 0 8px 24px 0 rgb(16 39 112 / 20%);
}
.button-login{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cadastro {
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: .8em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding: 0.6em 1.2em;
    background-color: var(--cor-laranja-navbar);
    color: var(--cor-branco);
    box-shadow: 0 8px 24px 0 rgb(255 235 167 / 20%);
    transition: all .3s ease-in-out;
    width: 51%;
    text-decoration: none;
}
.btn-cadastro:hover {
    background-color: var(--cor-laranja-navbar);
    color: var(--cor-branco);
    box-shadow: 0 8px 24px 0 rgb(16 39 112 / 20%);
}



/* Reponsividade */
@media (max-width: 524px){
    .imgSeplag{
        width: 350px;
    }

    .container-wrap .login{
        width: 95%;
    }

    .login form{
        padding: 0 45px;
    }

    .login .logo{
        width: 144px;
    }

    .login .text1{
        font-size: 20px;
    }

    .login .linha{
        width: 176px;
    }
    .btn-cadastro {
        width: 55%;
    }
}
@media (max-width: 480px) {
    .btn-cadastro {
        width: 80%;
        text-align: center;
    }
}
