.campo__principal{
    display: flex;
    flex-direction: column;
}

.campo__janela{
    width: 100%;
    height: 366px;
    background: #6BD1FF;
    border-radius: 8px;
    padding: 32px;
  
}

.window{
    background-image: url(../assets/icons/bolinhas.png);
    background-color: #141414;
    background-repeat: no-repeat;
    background-position: 1rem 1rem;
    background-size: 40px;
    background-attachment: local;
    box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.24);
    border-radius: 8px;
   
    height: 302px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textarea{
    width: 41rem;
    height: 80%;
    overflow-y:hidden;
    display: block;
    padding: 0 2rem;
    box-sizing: border-box;
    resize: none;
    outline: none;
    font-family: 'Roboto', sans-serif;
    background-color: #141414;
    text-align: left;
    white-space: pre-wrap;
}

.botao__visualizar{
    height: 3.7em;
    background: rgba(80, 129, 251, 0.08);
    border-radius: 8px;
    margin-top: 3rem;
    cursor: pointer;
}
.botao__visualizar:hover{
    background: rgba(80, 129, 251, 0.16);
}
.botao__visualizar:active{
    background: rgba(80, 129, 251, 0.16);
    border: 4px solid rgba(80, 129, 251, 0.24); 
}

@media screen and (max-width: 1023px){
    .campo__janela, .botao__visualizar{
        width: 704px;
    }
    .textarea, .window{
        width: 640px;
    }
}

@media screen and (max-width: 767px ){
    .campo__principal,.campo__janela, .botao__visualizar{
        width: 100%;
    }
    .textarea, .window{
        width: 98%;
    }
}