body,html {
	margin: 0px;
	padding: 0px;
	background-color: #fff;
	height: 100%;
}

.background {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: left;
	align-items: left;
	text-align: left;
	background: linear-gradient( rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4) ), url("../images/instagram/back.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

form {
	background: inherit;
	position: absolute;
	overflow: hidden;
	padding: 15px 25px 25px 25px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
	border-radius: 7px;
	box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.3);
	width: 340px;
}

form:before {
	content: '';
	position: absolute;
	top: -25px;
	left: -25px;
	bottom: 0;
	right: 0;
	background: inherit;
	box-shadow: inset 0 0 0 200px rgba(255,255,255,0.05);
 	filter: blur(10px);
}

form input {
	width: 100%;
	box-sizing: border-box;
	margin-top: 15px;
	padding: 15px;
	background-color: transparent;
	position: relative;
	z-index: 2;
	letter-spacing: 1.5px;
	color: #fff;
	outline: none;
	font-family: monserat;
	border: 1px solid transparent;
	box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	border-radius: 5px;
}

form input[type='submit'] {
	box-shadow: inset 0 0 0 200px rgba(0,0,0,0.4);
	cursor: pointer;
	padding: 20px;
	font-weight: bold;
	letter-spacing: 1.5px;
	transition: 0.3s;
}

form input[type='submit']:hover {
	box-shadow: inset 0 0 0 200px rgba(0,0,0,0.6);
}

.logo {
	font-family: billabong;
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 50px;
	letter-spacing: 1px;
}

.bubble-container {
	position: absolute;
	right: 0;
	top: 0;
	padding: 35px 15px 30px 30px;
}

.bubbles {
	box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	padding: 13px;
	display: inline-block;
	border-radius: 100px;
	margin-right: 10px;
}

.check-box-holder {
	position: relative;
	z-index: 2;
	margin-top: 20px;
}

.check-box-holder i {
	float: left;
	color: #fff;
	opacity: 0.9;
	font-size: 16px;
	border-radius: 5px;
	margin-right: 10px;
	cursor: pointer;
	box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	background-color: rgba(0,0,0,0.5);
	padding: 10px;

}

.check-box-holder i:hover {
	box-shadow: inset 0 0 0 200px rgba(0,0,0,0.6);
}

.check-name {
	display: inline-block;
	color: #fff;
	font-family: monserat;
	opacity: 0.9;
	font-size: 13px;
	letter-spacing: 1.5px;
	float: left;
	margin: 8.5px 0px 0px 0px;
}

@font-face {
	src: url("../usable-fonts/monserat.ttf");
	font-family: monserat;
}

@font-face {
	src: url("../usable-fonts/billabong.ttf");
	font-family: billabong;
}

::placeholder {
	color: #fff;
	opacity: 1;
	letter-spacing: 1.5px;
	opacity: 0.9;
	font-size: 13px;
}

:-ms-input-placeholder {
	color: #fff;
}

::-ms-input-placeholder {
	color: #fff;
}

.watermark {
	position: absolute;
	top: 95%;
	left: 50%;
	font-size: 16px;
	color: #fff;
	font-family: monserat;
	transform: translate(-50%, -50%);
	text-shadow: 0 0 .7px, 0 0 1.1px, 0 0 1.1px;
	letter-spacing: 1.5px;
	text-shadow: 0 5px 10px rgba(0,0,0,1);
	mix-blend-mode: overlay;
}

@media only screen and (min-width: 1px) and (max-width: 480px) {
	
	form {
		width: 80%;
		transition: 0.3s;
	}

}