* {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

body {
    background: #F3F5FC;
}

header {
    display: inline-block;

    margin-top: 40px;
    margin-left: 84px;
}

.botoes {
    display: flex;
    align-items: flex-start;

    position: absolute;
    
    left: 240px;
    top: 685px;

}

.inputTexto {
    display: flex;

    width: 680px;
    height: 48px;
    margin-left: 240px;
    margin-top: 80px;

    color: #0A3871;

    background: none;
    border: none;

    text-align: bottom;

    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 32px;
    font-weight: 400px;
}

.inputTexto::placeholder {
    color: #0A3871;
}

.info {
    display: flex;

    width: 228px;
    height: 18px;

    margin-top: 435px;
    margin-left: 250px;

    font-size: 12px;
}

.encriptar {
    display: inline-block;
    
    width: 328px;
    height: 67px;

    background: #0A3871;
    border-radius: 24px;
    border: none;
    
    margin: 0px 24px 0px 0px;
}

.encriptar:hover {
    cursor: pointer;
    background: #1b64bd;
    transition: 1s;
}

.encriptar:active {
    background: #0A3871;
    
}

.encriptar p {
    text-align: center;
    color: #FFFFFF;
}

.desencriptar {
    display: inline-block;

    box-sizing: border-box;

    width: 328px;
    height: 67px;

    background: #F3F5FC;
    border: 1px solid #0A3871;
    border-radius: 24px;

}

.desencriptar:hover {
    cursor: pointer;
    background: #b7bbc0;
    transition: 1s;
}

.desencriptar:active {
    background: #D8DFE8;
}

.desencriptar p {
    text-align: center;
    color: #0A3871;
}

.bloco-mensagem {
    display: inline-block;
}

.mensagem {
    display: flex;
    padding: 32px;
    font-size: 24px;

    position: absolute;

    width: 350px;
    height: 650px;

    right: 40px;
    top: 40px;

    color: #0A3871;

    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    border: none;

    background-image: url(imagens/mensagem.png);
    background-repeat: no-repeat;
    background-position-y: 100px;
    background-position-x: 50px;
    
}

.copiar {
    position: absolute;
    vertical-align: right;
    box-sizing: border-box;

    width: 0px;
    height: 0px;

    right: 100px;

    background: none;
    border: none;
    border-radius: 24px;

}

.copiar:hover {
    cursor: pointer;
    transition: 1s;
}

.copiar:active {
    color: #0A3871;
}

#apagar {
    display: inline-block;
    text-align: center;
    color: #343A40;

    position: absolute;
    right: 80px;
    top: 500px;


    width: 336px;
    height: 58px;
}

#apagar h1 {
    font-weight: bold;
    font-size: 24px;
    line-height: 120%;
}

#apagar p {
    font-size: 16px;

    width: 336px;
    height: 48px;

    margin-top: 16px;
}

footer {
    text-align: center;
    margin-top: 100px;
    line-height: 25px;   
}

@media screen and (max-width: 480px) {

    header {
        margin-left: 16px;
        margin-top: 24px;      
    }

    body {
        width: auto;
    }

    .info {     
        margin-top: 251px;
        margin-left: 40px;
    }

    .botoes {
        display: inline-block;
        left: 0px;
        top: 400px;
    }

    .inputTexto {
        margin-left: 16px;
        margin-top: 80px;
        
        width: 343px;
        height: 48px;

        padding: 5px;
    }

    .encriptar {
        margin-top: 100px;
        margin-left: 10%;
    }

    .desencriptar {
        margin-top: 16px;
        margin-left: 10%;
    }

    #bloco-mensagem {
        margin-left: 50px;
    }


    .mensagem {
        display: flex;

        background-image: none;

        width: 300px;
        height: 146px;

        top: 707px;
        left: 24px;
        right: 24px;
        
        
    }

    .copiar {
        margin-top: 380px;
    }

    #apagar {
        margin-left: 24px;

        Top: 739px;
        left: 16px;
    }

    footer {
        margin-top: 450px;
        padding-bottom: 20px;
    }
}




