html{
    background-color: #F3F5FC;
}

.row{
    background-color: #F3F5FC;
}

#logo{
    display: flex;
    align-items: flex-start;
    padding: 0px;

    width: 90px;
    height: 36px;
    margin-top: 3vh;
    margin-left: 1vw;
}

#img-resultado{
    width: 20vw;
    height: auto;
    margin-top: 8vw;
}

.h-60{
    height: 60%;
}

#texto-ingresado{
    width: 80%;
    height: 240px;
    margin-top: 6vh;
    margin-left: 12vw;
    align-self: center;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;

    color: #0A3871;

    border: none;
    outline: none;

    resize: none;
    overflow-y: auto;
    background-color: #F3F5FC;
}

#texto-resultado{
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;

    color: #0A3871;

    border: none;
    outline: none;
    resize: none;
}

#resultado{
    display: flex;
    align-items: flex-start;
    padding: 4px;
    gap: 24px;
    background-color: #FFFFFF;
    height: 95vh;
    margin-bottom: 1vh;
}

h4{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700 !important;
    font-size: 24px;
    line-height: 120%;
    /* or 29px */

    text-align: center;

    /* Gray/gray-500 */
    color: #343A40;
}

p{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    /* or 24px */

    text-align: center;

    /* Gray/gray-400 */

    color: #495057;


    /* Inside auto layout */

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    word-wrap: break-word;
}

a{
    color: #0A3871 !important;
}

a:link{
    text-decoration: none;
    outline: none;
    font-family: 'Inter';
    font-size: large;
    font-weight: 800;
}

a:hover{
    text-decoration: underline #eeaf11;
}

a:hover i{
   color: #eeaf11;
}

#encriptar{
    padding: 1vw;

    width: 30vw;
    height: 10vh;

    background: #0A3871;
    border-radius: 24px;

    color: #FFFFFF;
}

#desencriptar{
    box-sizing: border-box;

    padding: 1vw;

    width: 30vw;
    height: 10vh;

    background: #D8DFE8;

    border: 1px solid #0A3871;
    border-radius: 24px;
}

#botonCopiar{
    padding: 1vw;

    width: 90%;
    height: 10vh;

    background: #F3F5FC;
    border: 1px solid #0A3871;
    border-radius: 24px;
}

label{
    margin-left: 5vw;
}

.msg-error{
    color: #343A40;
    border: 1px solid grey;
    border-radius: 12px;
    background: rgba(255, 36, 36, 0.433);

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
}

.alerta-abierta{
    display: flex;
    width: 60%;
    margin: 0 auto;
    padding: 16px;
    border: 2px solid;
    border-radius: 10px;
}

.alerta-cerrada{
    display: none !important;
}

.alerta-valida{
    border-color: #198754;
    background-color: rgba(25, 135, 84, 0.3);
}

.alerta-error{
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.3);
}

.alerta-copy{
    border-color: #ffc107;
    background-color: rgba(255, 193, 7, 0.3);
}

.fa-x{
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #img-resultado{
      display: none;
    }

    #resultado{
        height: auto;
        margin-top: 50px !important;
    }
    
    #encriptar{
        width: 100%;
    }
    
    #desencriptar{
        width: 100%;
        margin-top: 5px;
    }
  }