@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-Thin.ttf) format("truetype");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Sora;
    src: url(../fonts/Sora-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal
}


body {
    margin: 0;
    font-family: Sora, sans-serif;
    background-color: #135352;
}

.container {
    display: grid;
    height: 100vh;
}

button {
    font-family: Sora, sans-serif
}

.containerExterno {
    background-color: #135352;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(320px, 450px);
    justify-content: center;
    align-content: center;
    gap: 20px;
}

.fraseLogo {
    color: #fff;
    justify-self: center;
    text-align: center;
}

.destaque {
    color: #a3c72e;
    font-weight: 700;
    font-size: 2em;
}

.typewriter {
    font-weight: 500;
    font-size: 2em;
}

@keyframes typing {
    0% {
        content: "";
    }

    10% {
        content: "a";
    }

    11.1395% {
        content: "ag";
    }

    12.2791% {
        content: "ago";
    }

    13.4186% {
        content: "agor";
    }

    14.5581% {
        content: "agora";
    }

    15.6977% {
        content: "agora ";
    }

    16.8372% {
        content: "agora é";
    }

    100% {
        content: "agora é";
    }
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.typewriter::before {
    content: "";
    animation: typing 10s infinite;
}

.typewriter::after {
    content: "_";
    border-right: 1px solid var(--caret);
    animation: blink 0.5s linear infinite;
}


.typewriter.nocaret::after {
    border-right: 0;
}


@media (prefers-reduced-motion) {
    .typewriter::after {
        animation: none;
    }

    @keyframes sequencePopup {

        0%,
        100% {
            content: "agora é";
        }
    }

    .typewriter::before {
        content: "agora é";
        animation: sequencePopup 12s linear infinite;
    }
}

.logoPrincipal {
    max-width: 450px;
    min-width: 320px;
    margin-top: 15px
}

.fraseProduto {
    font-size: 1.2em;
}

.corFontePrimariaLogo {
    color: #a3c72e;
}

.formLogin {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
    gap: 5px
}

.cabecalhoInputs {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 700
}

.boxInput {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative
}

.inputLogin {
    width: 100%;
    height: 40px;
    background-color: #135352;
    color: #fff;
    border: 1px solid #a3c72e;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 55px
}

.inputLogin::placeholder {
    color: #fff
}

.inputLogin:focus-visible {
    outline: none;
    box-shadow: inset 0 1px 1px #00000013, 0 0 8px #a3c72e
}

.boxIconeUsuario {
    position: absolute;
    width: 40px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0
}

.iconeUsuario {
    width: 25px;
    height: 25px
}

.boxIconeVisibilidade {
    position: absolute;
    width: 40px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    background-color: #a3c72e;
    border-radius: 0 5px 5px 0;
    cursor: pointer
}

.iconeVisibilidade {
    width: 25px;
    height: 25px
}

.botaoLogin {
    width: 200px;
    height: 40px !important;
    margin-top: 20px;
    color: #135352 !important;
    font-weight: 700;
}

.rodapeCopyright {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 420px) {
    .destaque {
        color: #a3c72e;
        font-weight: 700;
        font-size: 1em;
    }

    .typewriter {
        font-weight: 500;
        font-size: 1em;
    }

    .logoPrincipal {
        max-width: 280px;
        min-width: 200px;
        margin-top: 15px;
    }

    .formLogin {
        max-width:100%;
        margin: 10px 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 15px;
        gap: 5px
    }
}