body{
    background: #e4c3ff;
    
}
.logo {
    margin: 3% 0 0 9%;
    display: flex;
    align-items: center;
}
.logo h1 {
    font-size: 25px;
    margin-left: 20px;
    color: #3e0b6e;
}
.main {
    display: flex;
    justify-content: space-between;
    margin: 5% 5% 0 5%;
}
.secao-texto-entrada {
    height: 500px;
}
.input-texto {
    border: none;
    background: #E5E5E5;
    font-size: 32px;
    border-radius: 15px;
    resize: none; 
    height: 300px;
    padding-left: 8%; 
    width: 90%; 
}
.input-texto:focus {
    outline: 0;
}
.input-texto::placeholder {
    color: #3e0b6e;
}
.mensagem {
    width: 400px;
    height: 630px;
    position: relative;
    bottom: 130px;
    border: none;
    resize: none;
    border-radius: 15px; 
    padding: 30px;
    background-image: url('../imagens/boneco.png');
    background-repeat: no-repeat;
    background-position:center ;
    background-size: 300px;
    text-align: center;
}
.mensagem:focus {
    outline: 0;
}
.informacao {
    display: flex;
    margin: 10px 0 20px 50px;
    align-items: center;
    font-size: 15px;
    color: #3e0b6e;
}
.informacao img {
    margin-right: 10px;
    width: 15px;
}
.botoes {
    text-align: center;
    margin-top: 10px;
}
.encriptar {
    width: 300px;
    height: 68px;
    border-radius: 24px;
    background: #3e0b6e;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.desencriptar {
    width: 300px;
    height: 68px;
    border-radius: 24px;
    background: #d8dfe8;
    border: 1px solid #3e0b6e;
    margin-left: 20px;
    color: #3e0b6e;
    font-size: 25px;
    cursor: pointer;
}
.footer {
    display: flex;
    margin-left: 8%;
    align-items: center;
    margin-top: -100px;
}
.footer  span{
    display: inline-block;
    font-size: 14px;
    font-style: italic;
    color: #3e0b6e;
}
#btnCopiar {
    position: absolute;
    bottom: 120px;
    right: 120px;
    width: 300px;
    height: 58px;
    border-radius: 24px;
    background: #e0d8e8;
    border: 1px solid #3e0b6e;
    color: #3e0b6e;
    font-size: 18px;
    cursor: pointer;
    display:none;
}
.texto-saida {
    position: absolute;
    bottom: 130px;
    width: 250px;
    text-align: center;
    margin-left: 65px;
}
.texto-saida h3 {
    font-size: 20px;
    font-weight: bold;
}
.texto-saida p {
    margin-top: 15px;
    margin-left: px;
    
}