* {
	margin: 0;
	padding: 0;
}

html {
	width: 100vw;
	height: 100vh;
}

/* CSS which you need for blurred box */
body {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: top;
	background-image: url(../img/backs.jpg);
	width: 100%;
	height: 100%;
	font-family: Arial, Helvetica;
	letter-spacing: 0.02em;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

.iced-box {
	position: relative;
	width: 750px;
	height: 230px;
	background: inherit;
	border-radius: 2px;
	overflow: hidden;
	margin: auto;
	top: calc(10%);
	border-style: solid;
	border-color: #ffffff;
}

.iced-box:after {
	content: '';
	width: 100%;
	height: 400px;
	background: inherit;
	position: absolute;
	margin-top: -300px;
	filter: blur(10px);
}

/* Form which you dont need */
.login {
	position: relative;
	margin: auto;
	margin-top: 50px;
	text-align: center;
	width: 80%;
	z-index: 1;
	margin-top: 50px;
}

input.user-password {
	width: 120px;
	height: 18px;
	opacity: 0.4;
	border-radius: 2px;
	padding: 5px 15px;
	border: 0;
}