* {
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Fondo de la página */
.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;  
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f0f2f5;
}

.wrap-login100 {
    width: 700px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

/* Título e Imagen de cabecera */
.login100-form-title {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 15px 74px 15px;
}

.login100-form-title-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.login100-form-title::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(54, 84, 99, 0.7); /* Capa azulada */
}

/* Estilo del Formulario */
.login100-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 43px 88px 93px 190px; /* Ajuste para alinear labels a la izquierda */
}

.wrap-input100 {
    width: 100%;
    font-size: 16px;
    position: relative;
    border-bottom: 2px solid #d9d9d9;
    margin-bottom: 26px;
}

.label-input100 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #999999;
    line-height: 1.2;
    padding-left: 2px;
    position: absolute;
    top: 15px;
    left: -120px; /* Coloca el label a la izquierda del input */
}

.input100 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    height: 45px;
    padding: 0 5px;
    border: none;
    outline: none;
}

::placeholder {
  color: #c7c7c7;
  opacity: 1; /* Fixes faded appearance in Firefox */
}


.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.4s;
    background: #57b846; /* Línea verde al hacer foco */
}

.input100:focus + .focus-input100::before {
    width: 100%;
}

/* Checkbox y Links */
.flex-sb-m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
}

.txt1 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
    text-decoration: none;
}

.txt-correo {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
    text-decoration: none;
}

.label-checkbox100 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1.2;
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

/* Botón Login */
.container-login100-form-btn {
    width: 100%;
    display: flex;
    justify-content: left;
    margin-top: 20px;
}

.login100-form-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 160px;
    height: 40px;
    background-color: #57b846;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    background-color: #333333;
}

.txt1:hover {
    color: #333333; /* Oscurece el texto */
    transition: color 0.3s ease;
}

/* Espaciados */
.m-b-26 { margin-bottom: 26px; }
.m-b-18 { margin-bottom: 18px; }
.p-b-30 { padding-bottom: 30px; }
.p-l-30 { padding-left: 60px; }
.p-r-30 { padding-right: 60px; }



.modal-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-overlay.active {
    display: flex;
}