/* Estilos generales */
*{
    background:#F3F5FC;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
}

.logo{
    padding-top: 20px;
    margin-left: 20px;
    width: auto;
}

.signo-exc{
    position: absolute;
    left: 12.5%;
    top: 694px;
}

.información{
    position: absolute;
    background: none;
    width: 300px;
    height: 20px;
    top: 690px;
    left: 14%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    /* identical to box height, or 18px */
    
    
    /* Gray/gray-400 */
    
    color: #495057;
    
    opacity: 0.8;
    
    /* Inside auto layout */
    
    flex: none;
    order: 1;
    flex-grow: 0;
}

.text-area{
    border: none;
    position: absolute;
    width: 680px;
    height: 288px;
    left: 240px;
    top: 168px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    /* or 48px */


    color: #0A3871;
}

::placeholder { color: #0A3871; text-transform: none;}
    .text-area:focus {
        outline: none;
    }

.botones{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    position: absolute;
    width: 680px;
    height: 67px;
    left: 240px;
    top: 750px;

}

.btn-encriptar{
    background: #0A3871;
    border: 1px solid #0A3871;
    border-radius: 24px;
    color: #d8dfe8;
    cursor: pointer;
    height: 67px;
    margin-left: 1px;
    width: 328px;
    transition: 1s all;
}

.btn-encriptar:hover{
    background: #1051a1;
    transform: scale(1.1);
}

.btn-encriptar:active{
    background: #0A3871;
    transition: 0.5s all;
}

.btn-desencriptar{
    background: #f8f9fc;
    border: 1px solid #0A3871;
    border-radius: 24px;
    color: #0A3871;
    height: 67px;
    margin-left: 30px;
    width: 328px;
    transition: 1s all;
    cursor: pointer;
}

.btn-desencriptar:hover{
    background: #d1dae5;
    transform: scale(1.1);
}

.btn-desencriptar:active{
    background: #749ac9;
    transition: 0.5s all;
}

.mensaje{
    background-image: url("imagenes/Muneco.png");
    background-repeat: no-repeat;
    background-position-y: 190px;
    background-position-x: 50px;
    background-color: white;
    border: none;
    position: absolute;
    width: 400px;
    height: 760px;
    left: 1250px;
    top: 40px;
    padding: 10px 20px 50px 20px;

    

    /* shadow */
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
    border-radius: 32px;

}

.mensaje:focus{
    outline: none;
}

.mensaje::placeholder {
    position: absolute;
    text-align: center;
    color: #343A40;
    top: 60%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
}
  
.mensaje-adicional {
    background: none;
    color: #495057;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    position: absolute;
    top: 630px;
    left: 1305px;
}

.btn-copiar{
    background: #f8f9fc;
    border: 1px solid #0A3871;
    border-radius: 24px;
    color: #0A3871;
    cursor: pointer;
    height: 67px;
    left: 1310px;
    top: 750px;
    position: absolute;
    width: 328px;
    transition: 1s all;
}

.btn-copiar:hover{
    background: #d1dae5;
    transform: scale(1.1);
}

.btn-copiar:active{
    background: #749ac9;
    transition: 0.5s all;
}

.mensaje-copiado{
    display: none;
    font-size: 20px;
    background: none;
    position: absolute;
    top: 710px;
    left: 1410px;
    color: #495057;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

footer{
    position: absolute;
    bottom: 5px;
    left: 35%;
    padding: 10px 0;
    font-size: 14px;
    color: black;
    text-align: center;
    font-weight: bold;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pgn{
    width: 25px;
    margin: 5 25px;
    padding: 5px 5px;
    border-radius: 50%; 
    
}
/* ... */
  
  /* Estilos para pantallas pequeñas */
  @media (max-width: 480px) {
    body {
      font-size: 18px;
    }
  
    .logo {
      width: auto;
    }
  
    /* Otros estilos específicos para pantallas pequeñas */
    
    .text-area{
        /* Ingrese el texto aqui */
        position: absolute;
        width: 343px;
        height: 250px;
        left: 16px;
        top: 152px;

        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 32px;
        line-height: 150%;
        /* identical to box height, or 48px */
        /* Dark blue/dark-blue-300 */
        color: #0A3871;
    }

    .signo-exc{
        position: absolute;
        left: 15px;
        right: 0%;
        top: 445px;
        bottom: 0%;
    }

    .información{
        width: 205px;
        height: 18px;
        left: 40px;
        top: 445px;

        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
        /* identical to box height, or 18px */


        /* Gray/gray-400 */

        color: #495057;


        /* Inside auto layout */

        flex: none;
        order: 1;
    }

    .botones{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 24px;
        position: absolute;
        width: 343px;
        height: 158px;
        left: 16px;
        top: 485px;
    }

    .btn-encriptar{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center; /* Añadido para centrar horizontalmente el contenido */
        padding: 24px;
        gap: 8px;
        width: 343px;
        height: 67px;
        /* Dark blue/dark-blue-300 */
        background: #0A3871;
        border-radius: 24px;
        /* Inside auto layout */
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .btn-desencriptar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center; /* Añadido para centrar horizontalmente el contenido */
        padding: 24px;
        left: -29px;
        top: 95px;
        position: absolute;
        gap: 8px;
        width: 343px;
        height: 67px;
        border: 1px solid #0A3871;
        border-radius: 24px;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
      }
      
    
    .mensaje{
        /* Auto layout */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
        gap: 32px;
        position: absolute;
        width: 278px;
        height: 113px;
        left: 24px;
        top: 707px;
        /* White */
        background: #FFFFFF;
        box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
        border-radius: 32px;
    }

    .mensaje::placeholder {
        width: 263px;
        height: 58px;
        
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
        /* or 29px */
        top: auto;
        text-align: center;
        
        /* Gray/gray-500 */
        
        color: #343A40;
        
        
        /* Inside auto layout */
        
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
    }

    .mensaje-adicional{
        width: 263px;
        height: 48px;
        top: 810px;
        left: 65px;

        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        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;
    }

    .btn-copiar{
        box-sizing: border-box;

        /* Auto layout */

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center; /* Añadido para centrar horizontalmente el contenido */
        padding: 24px;
        gap: 8px;

        width: 279px;
        height: 67px;
        top: 970px;
        left: 55px;

        /* Dark blue/dark-blue-300 */

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

        /* Inside auto layout */

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

    .mensaje-copiado{
        display: none;
        font-size: 20px;
        background: none;
        position: absolute;
        top: 930px;
        left: 130px;
        color: #495057;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    footer{
        background: none;
        position: absolute;
        bottom: 5px;
        top: 1000px;
        left: 2%;
        padding: 10px 0;
        font-size: 14px;
        color: black;
        text-align: center;
        font-weight: bold;
        
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .pgn{
        width: 20px;
        margin: 5 20px;
        padding: 5px 5px;
        border-radius: 50%;
    }

  }



  


  /* Estilos para pantallas medianas */
  @media (min-width: 767px) and (max-width:820px) {
    body {
        font-size: 18px;
      }
    
      .logo {
        width: auto;
      }
    
      /* Otros estilos específicos */
      
      .text-area{
            /* Ingrese el texto aqui */
            position: absolute;
            width: 688px;
            height: 400px;
            left: 40px;
            top: 240px;
    
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            font-size: 32px;
            line-height: 150%;
            /* identical to box height, or 48px */
            /* Dark blue/dark-blue-300 */
            color: #0A3871;
      }
  
      .signo-exc{
            position: absolute;
            left: 39px;
            right: 0%;
            top: 822px;
            bottom: 0%;
      }
  
      .información{
            width: 250px;
            height: 18px;
            top: 820px;
            left: 65px;
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            font-size: 15px;
            line-height: 150%;
            /* identical to box height, or 18px */
            
            
            /* Gray/gray-400 */
            
            color: #495057;
            
            
            /* Inside auto layout */
            
            flex: none;
            order: 1;
            flex-grow: 0;
      }
  
      .botones{
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            padding: 0px;
            gap: 24px;
            
            position: absolute;
            width: 688px;
            height: 67px;
            left: 40px;
            top: 870px;
      }
  
      .btn-encriptar{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center; /* Añadido para centrar horizontalmente el contenido */
            padding: 24px;
            gap: 8px;

            width: 332px;
            height: 67px;

            /* Dark blue/dark-blue-300 */

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

            /* Inside auto layout */

            flex: none;
            order: 0;
            flex-grow: 1;
      }
  
      .btn-desencriptar {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center; /* Añadido para centrar horizontalmente el contenido */
            padding: 24px;
            gap: 8px;

            width: 332px;
            height: 67px;

            /* Dark blue/dark-blue-300 */

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

            /* Inside auto layout */

            flex: none;
            order: 1;
            flex-grow: 1;
        }
        
      
      .mensaje{
            /* Auto layout */
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 32px;
            gap: 32px;
            

            position: absolute;
            width: 688px;
            height: 133px;
            left: 40px;
            top: 1001px;

            /* White */

            background: #FFFFFF;
            /* shadow */

            box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
            border-radius: 32px;
      }
  
      .mensaje::placeholder {
            width: 624px;
            height: 29px;
            top: auto;
            text-align: center;
            font-family: 'Inter';
            font-style: normal;
            font-weight: 700;
            font-size: 30px;
            line-height: 120%;
            /* identical to box height, or 29px */
            
            text-align: center;
            
            /* Gray/gray-500 */
            
            color: #343A40;
            
            
            /* Inside auto layout */
            
            flex: none;
            order: 0;
            align-self: stretch;
            flex-grow: 0;
      }
  
      .mensaje-adicional{
            width: 624px;
            height: 24px;
            top: 1096px;
            left: 69px;
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 150%;
            /* identical to box height, or 24px */
            
            text-align: center;
            
            /* Gray/gray-400 */
            
            color: #495057;
            
            
            /* Inside auto layout */
            
            flex: none;
            order: 1;
            align-self: stretch;
            flex-grow: 0;
      }
  
      .btn-copiar{
            box-sizing: border-box;

            /* Auto layout */
            
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; /* Añadido para centrar horizontalmente el contenido */
            padding: 24px;
            gap: 8px;
            text-align: center;
            
            width: 624px;
            height: 67px;
            top: 1263px;
            left: 92px;
            
            /* Dark blue/dark-blue-300 */
            
            border: 1px solid #0A3871;
            border-radius: 24px;
            
            /* Inside auto layout */
            
            flex: none;
            order: 1;
            align-self: stretch;
            flex-grow: 0;
      }
  
      .mensaje-copiado{
            display: none;
            font-size: 20px;
            background: none;
            position: absolute;
            top: 1223px;
            left: 345px;
            color: #495057;
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
        }

        footer{
            background: none;
            position: absolute;
            bottom: 5px;
            top: 1300px;
            left: 17%;
            padding: 10px 0;
            font-size: 14px;
            color: black;
            text-align: center;
            font-weight: bold;
            
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
    
        .pgn{
            width: 20px;
            margin: 5 20px;
            padding: 5px 5px;
            border-radius: 50%;
        }
  }
  