<style type="text/css">
.inner-container{
width:400px;
height:400px;
position:absolute;
top:calc(50vh - 200px);
left:calc(50vw - 200px);
overflow:hidden;
}
#no-blur{
z-index: 20;
}
.box{
position:absolute;
height:100%;
width:100%;
font-family:Helvetica;
color:#fff;
background:rgba(0,0,0,0.13);
padding:30px 0px;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
z-index: 1;
}
</style>
<div class="inner-container">
<div class="box">
<div id="no-blur">
<h1> Login </h1>
<input type="text" name="Pseudo" onkeyup="inputValid()" id="usrId" class="form-control" placeholder="Pseudo" />
<input type="password" name="Password" id="pwdId" class="form-control" placeholder="Password" />
{% if error is defined %}
<span class="error">{{ error }}</span>
{% endif %}
<input type="submit" id="btnCnx" style="border:0;" class="btn btn-success" /><br/>
</div>
</div>
</div>
i am attempting to remove the blur effect applied to the "noblur" div in order to only blur the box and not its inner elements. However, setting the blur value to 0 did not result in any changes. here is the CSS result of the page