*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    background-color: #DFE6FF;
}

.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap:0;
}

header{
    width: 65vw;
    height: 10vh;
    margin-top: 4%;
    margin-left: 8%;
}

#logo-altura{
    height: auto;
}

main{
    display: flex;
    height:  450px;
    gap: 5%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.campo{
    width: 50%;
    height: 100%;
    padding: 2% 10%;
}

textarea#msg{
    width: 40vw;
    height: fit-content;
    font-size: 16px;
    background-color: transparent;
    border: none;
    color: #194c8a;
}

textarea:focus{
    box-shadow: 0 0 0 0;
    outline: 0;
    }

.container-resultado{
    height: 600px;
    width: 40%;
    padding: 0 10%;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5%;
    border-radius: 24px;
}

#final-text{
    background-image: url(../image/pesquisa.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 10% 6%;
    border: none;
    background-color: rgb(167, 192, 221);
    border-radius: 24px;
    resize: none;
    color: #194c8a;
    font-weight: bold;
    font-size: 20px;
}

#final-text:focus{
    border: none;
}

.botoes{
    width: 100%;
}

button{
    padding: 2%;
    border-radius: 8px;
    border: 0.5px solid #194c8a;
}