<style type="text/css">
.inner-container{
width:400px;
height:400px;
position:absolute;
top:calc(50vh - 200px);
left:calc(50vw - 200px);
overflow:hidden;
}
#noblur{
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="noblur">
<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 want to blur the box only and not the elements inside it ,i tried to remove the blur from the "noblur" div with setting the blur to 0 but nothing happened css result of the page