@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

:root {
    --cor-fundo: #F3F5FC;
    --cor-azul-escuro: #0A3871;
    --cor-branco: #ffffff;
    --cor-azul-claro: #3F6DDE;
    --cor-roxo-claro: #4E4CD3;
}

body {
    background-color: var(--cor-fundo);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

main {
    width: 100vw;
    height: 100vh;
    margin-right: 8%;
    display: flex;
    justify-content: space-between;
}
 
.conteudo-esquerda {
    margin-left: 15%;
    margin-top: 5%;
    margin-bottom: 1.5%;
    display: flex;
    flex-direction: column;
}

.texto {
    width: 50vw;
    height: 100%;
    font-size: 25px;
    font-weight: 400;
    background-color: var(--cor-fundo);
    color: var(--cor-azul-claro);
    resize: none;
    border: none;
    outline: none;
}

.texto::placeholder {
    color: var(--cor-azul-claro);
}

.texto::-webkit-scrollbar {
    width: 8px;
}

.texto::-webkit-scrollbar-thumb {
    background-color: var(--cor-azul-claro);
    border-radius: 25px;
    cursor: pointer;
}

.texto::-webkit-scrollbar-track {
    background-color: var(--cor-fundo);
}

.conteudo-esquerda-final {
    margin: 3% 0;
    display: flex;
    flex-direction: column;
}

.conteudo-esquerda-botoes-lingua {
    margin: 0 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botoes-lingua button {
    padding: 8px 8px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    background-color: #FFFFFF;
    color: #4E4CD3;
    border: 1.8px solid #4E4CD3;
    cursor: pointer;
    transition: 0.5s;
}

.botoes-lingua button:hover {
    background-color: #4E4CD3;
    color: #FFFFFF;
}

.botoes-atalho {
    display: flex;
    gap: 7px;
}

.botoes-atalho button {
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    background-color: #FFFFFF;
    color: #4E4CD3;
    border: 1.8px solid #4E4CD3;
    cursor: pointer;
    transition: 0.5s;
}

.botoes-atalho button:hover {
    background-color: #4E4CD3;
    color: #FFFFFF;
}

.conteudo-esquerda-botoes {
    display: flex;
    gap: 15px;
}

.conteudo-esquerda-botoes button {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    font-size: 15px;
    cursor: pointer;
}

.criptografar {
    background-color: var(--cor-roxo-claro);
    color: var(--cor-branco);
    border: none;
}

.criptografar:hover {
    background-color: #5d5bf3;
}

.descriptografar {
    border: 1.5px var(--cor-roxo-claro) solid;
    background-color: #ffffff;
    color: var(--cor-roxo-claro);
}

.descriptografar:hover {
    background-color: #4e4cd32d;
}

.conteudo-direita {
    width: 25%;
    margin: 2%;
    padding: 1.3% 1.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cor-branco);
    border-radius: 25px;
    box-shadow: 0 0 10px #0000001e;
    overflow-y: auto;
    word-wrap: break-word;
}

.conteudo-direita::-webkit-scrollbar {
    width: 8px;
}

.conteudo-direita::-webkit-scrollbar-thumb {
    background-color: var(--cor-azul-claro);
    border-radius: 25px;
    cursor: pointer;
}

.conteudo-direita::-webkit-scrollbar-track {
    background-color: transparent;
}

.texto-criptografado {
    display: none;
    width: 100%;
    font-size: 20px;
    color: #464b50;
    margin-bottom: 15%;
}

.conteudo-direita-itens {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    margin-top: 35%;
}

.conteudo-direita img {
    padding-bottom: 25px;
    width: 70%;
}

.conteudo-direita-mensagem {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 90%;
    text-align: center;
    cursor: default;
}

.conteudo-direita-mensagem h2 {
    font-size: 23px;
    font-weight: 500;
}

.conteudo-direita-mensagem p {
    font-size: 15px;
}

.conteudo-direita-copiar {
    display: none;
    width: 100%;
    padding: 18px 0;
    border-radius: 18px;
    font-size: 15px;
    cursor: pointer;
    /* border: 1.5px var(--cor-azul-claro) solid; */
    border: none;
    background-color: var(--cor-azul-claro);
    color: var(--cor-branco);
}

.conteudo-direita-copiar:hover {
    background-color: #4e7df5;
    color: var(--cor-branco);
}
