@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

* {
    flex-wrap : wrap;
}

body {
    box-sizing: border-box;
    display: flex;         
    margin: 5px;
    height: 100vh; 
    
}

.cabecalho {
    width: 100%; 
    padding: 2% 15px; 
    
}

.conteudo__principal {
    display: flex;
    height: 92%;
    width: 65%;
    
    justify-content: center;
    flex-direction: column;      
}

.texto {
    display: flex;
    padding: 0 15px; 
    width: auto;
    flex-direction: column;
    align-items: center;
    flex: 1;
}


.msg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "inter";
    color: #0A3871;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.8;
}

.img_exclamacao {
    width: 28px;
    height: 28px;
}

.imput_dados {
    color: #0A3871;
    border: none;
    outline: none;
    font-family: "inter";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    overflow-wrap: break-word;
    max-width: 100%;
    height: 350px;
    
}

.espaco__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px ;
}

.btn {
    display: flex;
    width: 192px;
    height: 48px;
    padding: 12px;
    align-items: center ;
    justify-content: center;
    border: none;   
    border-radius: 24px;
}

#cripto {
    background-color: #0A3871;
    color: white;
}

#decripto {
    background: #D8DFE8 ;
    color: #0A3871;
    
}

.imput_resultado {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27%; 
    height: 92%;
    padding: 0 15px;
    margin: 0;
    border-radius: 32px;
    background-color: white;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
}

.estilo_resultado {
    color:#495057;     
    display: flex;
    height: 92%;
    width: 65%;    
    
    justify-content: center;
    flex-direction: column;
}

#copyBtn {
    display: none;
    width: 192px;
    height: 48px;
    padding: 12px;
    align-items: center ;
    justify-content: center;
    border: none;   
    border-radius: 24px;
    background: #D8DFE8 ;
    color: #0A3871;
}

.rodape {
    width: 100%;
    margin: 0px;
    padding: 10px;
    text-align: center;
}

#txt {
    color: white;
    background-color: #0A3871;
    border-radius: 8px;
    
}

