* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}
body {
    background-image: url(https://suinpac.com/indexRecepcion/fondo_login27.png);
    /* Image is centered vertically and horiz   ontally at all times */
    background-position: left center;
    /* Image doesn't repeat */
    background-repeat: no-repeat;
    /* Makes the image fixed in the viewport so that it doesn't move when
        the content height is greater than the image height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based on its container's size */
    background-size: 100% 100%;
    /* Pick a solid background color that will be displayed while the background image is loading */
    background-color:#464646;

    overflow-x: hidden; 
    
}

/*Se agrego comentario*/

/**
* Todo: media queries para cada tipo de resolcuion de pantallas
* Todo: Resolucion de 1023px a 781px
* Todo: Resolucion de 780px a 412px
* Todo: Resolucion de 411px a 360px
**/

/**
* Todo: Titulo del tarjeta
**/
h1 {
    font-family: inherit;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #48484b;
}
.login-form h1 {
    text-align: center;
}

/**
* Todo: Tarjeta contenedora
* ! .login-form
**/
.login-form {
    width: 400px;
    height: 720px;
    padding: 10px 30px;
    border-radius: 10px;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    

}

.logo {  /* ESTILOS PARA IMAGEN DEL LOGO DE SUINPAC EN LETRAS AZULES */
    position: absolute;
    z-index: -1; /* La imagen estará por debajo de los enlaces */
    width: 420px;
    bottom:-18%; /* Ajusta la posición de la imagen, puedes probar con otros valores */
    left: 50%; /* Centra la imagen */
    transform: translateX(-50%); /* Ajusta la posición horizontal */
    height: auto;
}


.text-center {
    position: relative; /* Asegura que los elementos dentro de este contenedor se manejen correctamente en relación */
    z-index: 1;/*El texto estará por encima de los enlaces*/
    height: auto; /*El tamaño de height se declara de forma automatica*/
}

.recu-form {
    width: 400px;
    height: 720px;
    padding: 50px 30px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

/**
* Todo: Elementos del formulario
* ! txtb
**/
.txtb {
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 25px 0;
}
.txtb input {
    font-size: 15px;
    color: #333;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0 5px;
    height: 40px;
}
.txtb span::before{
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    z-index: -1;
    transition: .5s;
}
.txtb span::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -2px;
    background: linear-gradient(100deg, #00a2ff, #002d70);
    transition: .5s;
}

/**
* Todo: Animacion de elementos del formulario
* ! .focus
*/
.focus + span::before{
    top: -5px;
}
.focus + span::after{
    width: 100%;
}

/**
* Todo: Boton submit
* ! input[type=submit]
*/
input[type=submit]  {
    background-color: #005885;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 5px 5px 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
input[type=submit]:hover {
    background-color: #0079b6;
    cursor: pointer;
}
input[type=submit]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

/**
* Todo: Animacion de la tarjeta contenedora y del boton submit
* ! .fadeIn .fourth
* ! .fadeInFirst .first
*/
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
.fadeIn .fourth {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.fadeInFirst {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:0.5s;
    -moz-animation-duration:0.5s;
    animation-duration:0.5s;
}
.fadeInFirst .first {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
/**
* Todo: Contenedor de botones sociales
* ! .contenedor
*/
.contenedor{
    width:100%;
    display:flex;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 30px;
}
.contenedorG{
    width:100%;
    display:flex;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: center;
   
}

/**
* Todo: Botones login social
* ! .btn
**/
.btn {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    display: inline-block;
    padding: .625rem 1.25rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: .375rem;
}
#btnEnviarCorreo {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    display: inline-block;
    padding: .625rem 1.25rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out,
    background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: .375rem;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
}

.btn-neutral {
    color: #212529;
    border-color: #fff;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11),
    0 1px 3px rgba(0, 0, 0, .08);
}
.btn-icon .btn-inner--icon img {
    width: 20px;
}
.btn-icon .btn-inner--text:not(:first-child) {
    margin-left: .20em;
}
.btn-icon .btn-inner--text:not(:last-child) {
    margin-right: .20em;
}

/**
* Todo: Footer del la tarjeta contenedora
*! .bottom-text
*/
.bottom-text {
    position: relative;
}

.bottom-text a {
    position: relative;
    z-index: 2; /* Asegura que esté encima de otros elementos */
}


/**
* Todo: Ligas Finales
* ! .ligas
*/
.ligas{
    position: absolute;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    padding-top: 10px;
    color: black;
}
a {
    color: #000000; /* Cambia "#FF0000" por el color que desees en formato hexadecimal, RGB u otro formato válido */
    text-align: center;
    text-decoration: none; /* Esto quita el subrayado por defecto de los enlaces. Puedes ajustarlo según tus necesidades. */
}