* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #f4f4fc;
}

header {
    width: 100%;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    position: absolute;
    width: 120px;
    height: 48px;
    left: 40px;
    top: 40px;
}

main {
    position: absolute;
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: space-between;
}

.contenedor-caja-texto {
    position: absolute;
    left: 200px;
    top: 100px;
    padding-left: 100px;
    width: 1080px;
    height: 600px;
}

.caja-texto {
    width: 80%;
    height: 100%;
    border: none;
    background-color: #f4f4fc;
    cursor: pointer;
    color: #433c5f;
    font-size: 32px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.caja-texto::placeholder {
    color: #594f83;
}

.alerta {
    position: absolute;
    top: 750px;
    left: 370px;
    display: flex;
    color: #495057;
}

.alerta img {
    margin-right: 5px;
}

.contenedor-botones {
    position: absolute;
    top: 800px;
    height: 80px;
    padding-left: 15%;
    padding-top: 15px;
}

.btn-encriptar {
    width: 328px;
    height: 67px;
    border-radius: 24px;
    background-color: #594f83;
    color: white;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    border: none;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.2s all;
}

.btn-encriptar:hover {
    box-shadow: 0px 24px 50px -8px rgba(0, 0, 0, 0.50);
}

.btn-encriptar:active {
    opacity: 0.3;
    box-shadow: 10px 10px 30px 10px black
} 

.btn-desencriptar {
    width: 328px;
    height: 67px;
    border-radius: 24px;
    background-color: #d8dfe8;
    color: #594f83;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    border: 1px solid #594f83;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.2s all;
}

.btn-desencriptar:hover {
    box-shadow: 0px 24px 50px -8px rgba(0, 0, 0, 0.50);
}

.btn-desencriptar:active {
    opacity: 0.3;
    box-shadow: 10px 10px 30px 10px black
} 

.seccion2{
    display: block;
    position: relative;
    width: 400px;
    height: 840px;
    right: 50px;
    padding-right: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 32px;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.50);
}

.contenedor-muneco {
    position: absolute;
    left: -20px;
    top: 180px;
    box-sizing: border-box;
    padding: 58px;
}

.contenedor-parrafo {
    position: absolute;
    box-sizing: border-box;
    top: 570px;
    left: 40px;
}

.contenedor-parrafo h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-align: center;
    color: #343A40;
}

.contenedor-parrafo P {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #495057;
    padding-top: 20px;
}

.contenedor-resultado {
    position: absolute;
    bottom: 350px;
    width: 320px;
    height: 450px;
    padding: 0;
    box-sizing: border-box;
    margin-left: 25px;
}

.contenedor-resultado p {
    color: #495057;
    font-size: 25px;
}

.contenedor-copiar {
    display: flex;
    position: absolute;
    bottom: 400px;
    top: 700px;
    background-color: aqua;
    padding-left: 40px;
}

.btn-copiar{
    width: 328px;
    height: 67px;
    border-radius: 24px;
    background-color: #ffffff;
    color: #594f83;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    border: 1px solid #594f83;
    cursor: pointer;
    position: relative;
    top: 50px;
    right: 4px;
    transition: 0.2s all;
}

.btn-copiar:hover {
    box-shadow: 0px 24px 50px -8px rgba(0, 0, 0, 0.50);
}

.btn-copiar:active {
    opacity: 0.3;
    box-shadow: 10px 10px 30px 10px black
} 

.ocultar {
    display: none;
}