* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #E5E5E5;
}

.cabecalho {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
    color: #0A3871;
    font-size: 2rem;
    text-align: right;
}

.cabecalho h1 {
    display: none;
}

.main_container {
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
}

.input textarea {
    font-size: 2rem;
    color: #0A3871;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: 0;
    resize: vertical;
    overflow: hidden;
    padding: 1rem;
    font-weight: 400;
    line-height: 150%;

}

.input h6 {
    font-size: 12px;
    line-height: 150%;
    opacity: 0.8;
    color: #495057;
    padding: 0 0 0 1rem;

}

.botoes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    align-self: center;
}

.botoes button {
    background: #0A3871;
    border: 1px solid #0A3871 !important;
    border-radius: 24px;
    text-decoration: none;
    width: 328px;
    height: 67px;
    cursor: pointer;
    font-size: 16px;
    color: #FFFFFF;
}

.btn-desencriptar {
    background: #D8DFE8 !important;
    border: 1px solid #0A3871 !important;
    color: #0A3871 !important;
}

.conteudo {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: white;
    margin: 2rem;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
    align-items: center;
}



.conteudo img {
    display: none;
}

.conteudo h2 {
    font-size: 24px;
    color: #0A3871;
    background-color: #FFFFFF;
}

.conteudo p {
    background-color: #FFFFFF;
    color: #495057;
}

.msg {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.conteudo span {
    background-color: transparent;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #495057;
    word-wrap: break-word;

}

.boneco {
    background-color: #FFFFFF;
}

.btn-copiar {
    display: none;
    border: 1px solid #0A3871;
    border-radius: 24px;
    text-decoration: none;
    height: 67px;
    cursor: pointer;
    font-size: 20px;
    background: #FFFFFF;
    color: #0A3871;
    opacity: 0;
}


button:hover {
    border: 2px solid #033d39 !important;
    background: #495057 !important;
    color: #FFFFFF !important;
    transition: 0.3s all !important;
}



.hide-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hide-txt1 {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hide-txt2 {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.show-item {
    opacity: 100;
    transition: opacity 0.5s ease;
}

@media screen and (min-width: 769px) {

    .botoes {
        flex-direction: row;
        align-self: center;
    }

    .input {
        display: flex;
        flex-direction: column;
    }

    .input textarea {
        height: 22rem;
    }



    .msg span {
        flex: 1;
        word-break: break-all;
    }


}

@media screen and (min-width: 1025px) {

    .container {
        display: grid;
        grid-template-columns: 3fr 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 1rem;
        grid-row-gap: 0px;
        max-height: 400px;
    }

    .input {
        grid-area: 1 / 1 / 2 / 2;
        padding: 2rem 0 0 7rem;
    }

    .conteudo {
        grid-area: 1 / 2 / 3 / 3;
        margin-top: -3rem;
        margin-bottom: 0rem;
        align-items: center;
        justify-items: center;
        text-align: center;
        min-width: 350px;
       
    }

    .botoes {
        grid-area: 2 / 1 / 3 / 2;
        align-self: auto;        
        padding: 0 0 0 7rem;
    }

    .conteudo img{
        display: block;
    }

    .btn-copiar{
        
    }
    



}