/* ==========================================
   1. BASE & BODY
   ========================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    height: 100vh;
    overflow: auto;
    color: #333;
}

/* ==========================================
   2. MENSAJE SUPERIOR
   ========================================== */
.mensaje-superior {
    display: inline-block;
    margin: 20px auto;
    padding: 6px 14px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.mensaje-superior h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.mensaje-superior p {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.mensaje-superior small {
    font-size: 12px;
    font-style: italic;
}

/* ==========================================
   3. BACKGROUND & CONTENEDOR LOGIN
   ========================================== */
.waveLogin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.containerLogin {
    margin-top: 0;
    padding-top: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.formLogin {
    margin: 0;
    padding: 0;
}

.imgLogin {
    display: none;
}

.login-content {
    background: rgba(85, 114, 192, 0.637);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(2px);
    padding: 40px;
    border-radius: 19px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 480px;
    width: 95%;
}

/* ==========================================
   4. INPUTS Y ICONOS DE INTERFAZ
   ========================================== */
.input-div {
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px 0;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.input-div .iLogin {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.input-div input.input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding-left: 5px;
    padding-right: 30px;
    border-radius: 50px;
    font-weight: 500;
    color: #555;
}

.input-div .view {
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    user-select: none;
    transition: color 0.2s ease;
}

.input-div .view:hover {
    color: #1D4ED8;
}

.input::placeholder {
    color: #aaa;
    font-style: italic;
    font-weight: 400;
    opacity: 1;
}

/* ==========================================
   5. BOTONES, ENLACES Y CAPTCHA
   ========================================== */
.btnLogin {
    margin-top: 20px;
    width: 33.3%;
    padding: 12px;
    border-radius: 50px;
    border: none;
    background-color: #F23827;
    color: white;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.btnLogin:hover {
    background-color: #d82b1c;
}

.recargarCaptcha {
    color: #b4d9f8;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.recargarCaptcha:hover {
    color: #ffffff;
    text-decoration: underline;
}

.text-center {
    font-size: 14px;
}

.text-center .btn {
    margin: 5px;
}

/* ==========================================
   6. CARACTERÍSTICAS E ICONOS (ADAPTADO)
   ========================================== */
.features-inside-login {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    padding-top: 15px;
}

.feature-mini-item {
    padding: 2px;
}

.feature-icon-mini-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-icon-mini-wrapper i {
    color: #ffffff !important; 
}

.feature-mini-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0px;
}

.icon-blue   { background-color: #1D4ED8; }
.icon-green  { background-color: #2E7D32; }
.icon-purple { background-color: #7B1FA2; }
.icon-qr     { background-color: #D97706; }

/* ==========================================
   7. FOOTER & COPYRIGHT
   ========================================== */
.footer-logo {
    text-align: center;
    margin-bottom: 2px;
    margin-top: 30px;
}

.footer-logo img {
    height: 20px;
    width: auto;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.copyright {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: #cecece;
    margin-top: 10px;
}

.copyright span {
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}