@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body {
	height: 100vh;
	background-image: url("../img/Drakensberg.JPG");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	backdrop-filter: blur(3px);
}

#btnLogin {
	font-family: 'Exo', sans-serif;
	font-size: 16px;
}

/* Float container - floating labels */
/* https://codepen.io/elujambio/pen/yjwzGP */
input {
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	/*padding: 20px 0px;*/
	height: 56px;
	border: none;
	border-bottom: solid 1px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0);
	/*min-width: 280px;*/
	box-sizing: border-box;
	transition: all .3s linear;
	color: #000;
	font-weight: 400;
	-webkit-appearance: none;
}
input:focus {
	border-bottom: solid 1px darkolivegreen;
	outline: 0;
	box-shadow: 0 2px 6px -8px rgba(182, 157, 230, 0.45);
}

.floating-label {
	position: relative;
	margin-bottom: 10px;
}
.floating-label label {
	position: absolute;
	font-size: 85%;
	top: calc(50% - 8px);
	left: 0;
	opacity: 0;
	transition: all .3s ease;
}
.floating-label input:not(:placeholder-shown) {
	padding: 28px 0px 12px 0px;
}
.floating-label input:not(:placeholder-shown) + label {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	opacity: .7;
}
/*******************/

/* Bootstrap Notifier - minimilast style */
/* http://bootstrap-notify.remabledesigns.com/ */
.alert-minimalist {
	background-color: rgb(241, 242, 240);
	border-color: rgba(149, 149, 149, 0.3);
	border-radius: 3px;
	color: rgb(149, 149, 149);
	padding: 10px;
}
.alert-minimalist > [data-notify="icon"] {
	height: 50px;
	margin-right: 12px;
}
.alert-minimalist > [data-notify="title"] {
	color: rgb(51, 51, 51);
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}
.alert-minimalist > [data-notify="message"] {
	font-size: 80%;
}
/*******************/
