* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.menu {

    background-color: #0057bb;
    padding: 15px;
    color: white;
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;

}

.menu img {
    margin-left: 5%;

}

body {
    background-color: #e2e2e2;
}

.main {
    width: 98%;
    height: 800px;
    background-color: white;
    margin: auto;
    margin-top: 3.5%;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #dbdbdb96;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    /* Sombra con profundidad */
}

.texto {
    margin-left: 20px;
    margin-top: 10px;
}

.hrTexto {
    margin-top: 30px;
}

.textoAire {
    width: 70%;
    margin: auto;
    text-align: justify;
    margin-top: 30px;
    font-weight: bold;
    color: rgb(71, 71, 71);

}

.nic,
.cupon {
    width: 40%;
    height: 250px;
    background-color: rgb(248, 248, 248);
    border: 1px solid rgb(156, 156, 156);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.185);
    /* Sombra con profundidad */
    border-radius: 7px;
    text-align: justify;
    font-weight: bold;
    color: rgb(71, 71, 71);
    margin: auto;
    margin-top: 30px;
    padding: 25px;
    padding-top: 60px;

}

#inputNic:focus,
#inputCupon:focus {
    border-bottom: 2px solid #2196f3;
    outline: none;
    /* Elimina el borde que aparece al hacer focus */

}

#labelNic,
#labelCupon {
    font-weight: bold;
    font-size: 14px;
}

#inputNic,
#inputCupon {
    background-color: #e2e2e200;
    border: none;
    border-bottom: 2px solid rgb(207, 207, 207);
    outline: none;
    height: 50px;

}

.contenedor {
    display: flex;
    justify-content: space-around;
    /* o space-between */
    align-items: flex-start;
    flex-wrap: wrap;
    /* para que se acomoden en móvil */
    gap: 1px;
    /* espacio entre bloques */
    width: 30%;
    margin: auto;
}


#captcha {
    margin-left: 40%;
    margin-top: 15px;
}

#btn-Pagar {
    background-color: #002d64;
    width: 100px;
    color: white;
    border-radius: 5px;
    height: 40px;
    font-weight: bold;
    margin-left: 65%;
    margin-top: 5%;
}

/* Responsive: solo en pantallas pequeñas */
@media (max-width: 768px) {
    .main {
        margin-top: 16%;
        color: rgb(53, 53, 53);
        font-size: 12px;
        font-weight: bold;
        height: 920px;

    }

    #btn-Pagar{
           background-color: #002d64;
    width: 100px;
    color: white;
    border-radius: 5px;
    height: 40px;
    font-weight: bold;
    margin-left: 35%;
    margin-top: -50px;
    }

    #captcha {
        margin-left: 10%;
        margin-top: 0;
    }

    .contenedor {
        display: block;

        width: 100%;
        margin: auto;
    }

    .nic,
    .cupon {
        width: 70%;
    }

    #imgLogo {
        width: 15%;
        height: 80%;

        animation: slideRight 0.8s ease-in-out;
        position: relative;
        /* Necesario para mover con 'left' */
    }

    #imgPortal {
        width: 30%;
        height: 80%;
        animation: slideRight 0.8s ease-in-out;
        position: relative;
        /* Necesario para mover con 'left' */
    }

    /* Definición de la animación */
    @keyframes slideRight {
        from {
            left: -100px;
            opacity: 0;
        }

        to {
            left: 0;
            opacity: 1;
        }
    }
}