    /* --- WRAPPER GENERAL --- */
.login-wrapper {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

/* --- CARD PRINCIPAL --- */
.login-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Fondo decorativo */
.login-bg-icon {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.login-bg-icon img {
    width: 260px;
    height: auto;
}

/* --- CONTENIDO --- */
.login-content {
    position: relative;
    z-index: 10;
}

/* --- TITULOS --- */
.login-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f3460;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.login-subtitle a {
    color: #3b5bdb;
    font-weight: 600;
    text-decoration: underline;
}

.login-subtitle a:hover {
    color: #4c6ef5;
}

/* --- FORMULARIO --- */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* --- INPUTS --- */
.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0a6;
    font-size: 14px;
}

.input-icon input {
    width: 100%;
    height: 46px;
    padding-left: 40px;
    padding-right: 12px;
    border-radius: 10px;
    border: 1px solid #d0d4da;
    background: #f8f9fc;
    font-size: 14px;
    color: #333;
    transition: all 0.25s ease;
}

.input-icon input:focus {
    background: #ffffff;
    border-color: #4c6ef5;
    box-shadow: 0 0 0 3px rgba(76,110,245,0.15);
    outline: none;
}

/* --- REMEMBER + FORGOT --- */
.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}

.forgot-link {
    font-size: 13px;
    color: #3b5bdb;
    text-decoration: underline;
}

.forgot-link:hover {
    color: #4c6ef5;
}

/* --- BOTÓN PRINCIPAL --- */
.login-btn {
    width: 100%;
    background: #4c6ef5;
    color: white;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(76,110,245,0.25);
}

.login-btn:hover {
    background: #3b5bdb;
    box-shadow: 0 6px 18px rgba(76,110,245,0.35);
}

/* --- RESPONSIVE --- */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 25px;
    }

    .login-title {
        font-size: 24px;
    }
}