@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/opensans.ttf') format('truetype');
}

@keyframes blurBackground {
	0% {
		filter: blur(0px);
		transform: scale(1.03);
	}
	100% {
		filter: blur(6px);
		transform: scale(1);
	}
}

html {
	background-color: #1a1a1a;
	overflow: hidden;
	font-family: 'Open Sans';
	color: white;
}

span {
	cursor: default;
}

.button {
	background-color: #ffffff;
	opacity: .97;
	color: black;
	width: 180px;
	line-height: 35px;
	text-align: center;
	border-radius: 5px;
	vertical-align: middle;
	box-shadow: 0px 2px 5px black;
	margin: auto;
	font-weight: bold;
	color: #525151;
	cursor: default;

	font-size: 16px;
    display: inline-block;
    margin: 5px;
}

.grow {
	transition: transform .2s ease-in-out;
}

.grow:hover {
	transform: scale(1.1);
}

#background {
	background: url(../images/background.jpg) no-repeat center center fixed;
	background-size: cover;
	filter: blur(6px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	animation: 2s ease-out 0s 1 blurBackground;
	box-shadow: inset 0px 10px 100px #00000094;
}

#bg-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#snow {
	animation: 5s ease-in SnowStartup;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	z-index: 0;
	touch-action: none;
	pointer-events: none;
	opacity: .8;
	left: 0px;
	background-color: #0a0a0a1a;
}

#content {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#logo {
	width: 170px;
	padding-top: 15px;
}

#header {
	z-index: -1;
	background-color: #181818;
	position: absolute;
	height: 80px;
	width: 100%;
	bottom: 0px;
	top: 0;
	left: 0;
	opacity: .8;
}

#password-label, #users-label {
	text-shadow: 0 0 7px black;
	font-size: 25px;
	letter-spacing: 5px;
}

#password {
	font-size: 20px;
	margin: 15px;
	padding: 8px;
}

#permissions-label {
	text-shadow: 0 0 7px black;
	font-size: 16px;
	letter-spacing: 5px;
}

#user-list {
	font-size: 18px;
    font-family: 'Open Sans';
    width: 230px;
    border-radius: 5px;
    background-color: transparent;
    color: white;
    border-color: white;
    text-shadow: 0 0 5px #2c2c2cc7;
    padding: 18px;
    margin: 15px;
	outline: white;
	text-align: center;
}

select option:checked, select option:hover {
    background: #ffffff -webkit-linear-gradient(bottom, #ffffff 0%, #ffffff 100%);
    border-radius: 5px;
    color: rgb(0, 0, 0);
    text-shadow: none;
}

.no-scroll::-webkit-scrollbar {
	display: none;
}

.no-scroll::-moz-scrollbar {
	display: none;
}

.no-scroll::-o-scrollbar {
	display: none;
}

.no-scroll::-google-ms-scrollbar {
	display: none;
}

.no-scroll::-khtml-scrollbar {
	display: none;
}

