@import url("https://fonts.googleapis.com/css2?family=Ysabeau+Office:ital,wght@0,1;0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,1;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");

* {
    background: #f3f5fc;
    font-family: "Ysabeau Office", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
}

main {
    display: flex;
    margin: 10px 80px;
}

.logo {
    padding-top: 10px;
    margin-left: 10px;
    width: 7%;
}

.text-area {
    border: none;
    color: #0a3871;
    margin-top: 50px;
    text-transform: lowercase;
    width: 700px;
    height: 320px;
}
::placeholder {
    color: #0a3871;
}

.text-area:focus {
    outline: none;
}

.text-area-msg {
    height: 510px;
    width: 410px;
    background: #fff;
    background-image: url("images/encriptador.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 50%;
    border: none;
    border-radius: 24px;
    display: block;
    margin-left: 100px;
    padding: 32px;
    color: #495057;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.text-area-msg:focus {
    outline: none;
}

.botones {
    display: flex;
    margin-top: 18px;
}

.btn-desencriptar {
    background: #d8dfe8;
    border: 1px solid #0a3871;
    border-radius: 24px;
    color: #0a3871;
    cursor: pointer;
    height: 67px;
    margin-left: 30px;
    width: 328px;
    transition: all 200ms ease-in-out;
}

.btn-desencriptar:hover {
    color: white;
    background: #0a3871;
}

.btn-encriptar {
    background: #0a3871;
    border: 1px solid #0a3871;
    border-radius: 24px;
    color: white;
    cursor: pointer;
    height: 67px;
    width: 328px;
    transition: all 200ms ease-in-out;
}

.btn-encriptar:hover {
    background: #d8dfe8;
    color: #0a3871;
}

.copiar {
    border: 1px solid #0a3871;
    border-radius: 24px;
    color: #0a3871;
    cursor: pointer;
    height: 67px;
    display: block;
    margin: 30px 150px;
    position: absolute;
    width: 336px;
}

.informacion {
    color: #495057;
    font-size: 18px;
}
