@import url(https://fonts.googleapis.com/css?family=Exo:100,200,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #fff;
	font-family: Arial;
	font-size: 12px;
	height: 100vh;
	overflow: hidden;
}

.body {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background-image: url('/images/Studenterlogin.jpg');
	background-size: cover;
	-webkit-filter: blur(9px);
	filter: blur(9px);
	z-index: 0;
}

.grad {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.65)));
	/* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}

/* New Layout Wrapper */
.login-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header {
	text-align: center;
	margin-bottom: 2rem;
}

.header div {
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 48px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header div span {
	color: #5379fa !important;
}

/* Glass Card & Controls */
.glass-card {
	width: 100%;
	max-width: 400px;
	padding: 2rem;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.05);
	/* Very subtle background */
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.glass-control {
	width: 100%;
	height: 45px;
	background: rgba(0, 0, 0, 0.2);
	/* Darker transparent background for better contrast */
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 4px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 10px 15px;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.glass-control:focus {
	outline: none;
	background: rgba(0, 0, 0, 0.4);
	border-color: #5379fa;
	box-shadow: 0 0 0 0.25rem rgba(83, 121, 250, 0.25);
}

.glass-control::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.btn-glass {
	width: 100%;
	height: 45px;
	background: #fff;
	border: none;
	cursor: pointer;
	border-radius: 4px;
	color: #333;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.2s;
}

.btn-glass:hover {
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-glass:active {
	transform: translateY(0);
}

/* Alert Overrides for Glass Theme */
.alert {
	border-radius: 4px;
	padding: 1rem;
	margin-bottom: 1rem;
	border: none;
	background: rgba(255, 255, 255, 0.9);
}

.alert-danger {
	color: #c0392b;
	border-left: 4px solid #c0392b;
}

.alert-success {
	color: #27ae60;
	border-left: 4px solid #27ae60;
}
