html {
	font-size: 1rem;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
	min-height: 100vh;
	margin: 0;
	position: relative;
	overflow: hidden;
}

/* Animated background effect */
body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
	animation: subtle-shift 20s ease-in-out infinite;
	z-index: 0;
}

@keyframes subtle-shift {
	0%, 100% { transform: translateX(0) translateY(0); }
	33% { transform: translateX(10px) translateY(-10px); }
	66% { transform: translateX(-10px) translateY(10px); }
}

main {
	background: rgba(26, 31, 58, 0.95);
	border: 1px solid rgba(0, 191, 255, 0.2);
	border-radius: 1rem;
	box-shadow: 
		0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 100px rgba(0, 191, 255, 0.1),
		inset 0 0 30px rgba(0, 191, 255, 0.03);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 3rem;
	min-width: 32rem;
	max-width: 36rem;
	width: 90%;
	position: relative;
	z-index: 1;
	backdrop-filter: blur(10px);
}

header {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

header img {
	margin: 0;
	width: 12rem;
	filter: brightness(1.1);
}

article {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section {
	color: #fff;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section>a.btn {
	align-items: center;
	background: linear-gradient(135deg, #00bfff, #0099cc);
	color: #0D0D0D;
	display: flex;
	font-family: "Overpass Regular", sans-serif;
	height: 3rem;
	justify-content: center;
	width: 100%;
	max-width: 20rem;
	line-height: 1.2;
	font-size: 1rem;
	margin: 1.5rem auto;
	padding: 0;
	border-radius: 0.75rem;
	box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

section>form {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 20rem;
	padding-top: 1.5rem;
	width: 100%;
}

section label {
	font-family: "Overpass Regular", sans-serif;
	font-size: .85rem;
	margin-bottom: 1rem;
	width: 100%;
}

.label-span {
	display: inline-block;
	margin-bottom: .5rem;
}

section label em {
	color: #F03b63;
	font-size: .875rem;
	font-family: "Overpass Bold", sans-serif;
	font-style: normal;
	line-height: 2.14;
	margin-top: .25rem;
}

section .form-control {
	background-color: transparent;
	border: 1px solid #707070;
	color: #fff;
	display: flex;
	flex-direction: column;
	font-family: "Overpass Regular", sans-serif;
	padding: 0.5rem 0;
	width: 100%;
}

section button.btn {
	background-color: #00bfff;
	color: #0D0D0D;
	display: block;
	font-family: "Overpass Regular", sans-serif;
	font-size: .9375rem;
	height: 2.375rem;
	margin-top: 1rem;
	max-width: 16.5rem;
	width: 100%;
}

button.btn, section>a.btn {
	border-radius: .5rem;
	max-width: 16.5rem;
}

.super-admin {
	margin: 1.875rem 0;
}

section > span {
	display: block;
	font-family: "Overpass Regular", sans-serif;
	margin: 0;
	max-width: 16.5rem;
	text-align: center;
}

p.error {
	margin: 0;
}

p.error.text-danger {
	color: #F03b63;
}

p.error>span {
	font-size: 2rem;
}

section h1 {
	font-family: "Overpass Bold", sans-serif;
	font-size: 2rem;
	padding-bottom: 1.5rem;
	margin: 0;
	color: #fff;
	text-align: center;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	width: 100%;
}

section h2 {
	font-family: "Overpass Regular", sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	margin: 0 0 1.5rem 0;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

/* Footer removed for cleaner design */

/* Footer styles removed */


/**************** Small Screens *****************/


/* ipad + tablets */

@media (max-width: 1024px) {
	body {
		padding: 1.5rem;
		min-height: calc(100vh - 3rem);
	}
	main {
		padding: 2.5rem 2rem;
		min-width: unset;
		width: 100%;
		max-width: 28rem;
		margin: auto;
	}
	header img {
		margin: 0 auto;
	}
	section h1 {
		font-size: 1.875rem;
		padding-bottom: 2.45rem;
	}
	section h2 {
		font-size: .8125rem;
	}
	section > form {
		max-width: 100%;
	}
	section > a.btn, section button.btn {
		font-size: .75rem;
		margin: 1rem 0;
		max-width: 100%;
	}
	section label {
		margin-top: .75rem;
	}
	.label-span {
		font-size: .9375rem;
		font-weight: 500;
	}
	section > span {
		max-width: 100%;
	}
	footer span {
		font-size: .75rem;
		margin: 0 auto;
	}
}


/* iPhoneX - mobile devices */

@media (max-width: 425px) {
	body {
		padding: 1rem;
	}
	main {
		max-width: unset;
		min-width: unset;
		width: calc(100% - 2rem);
		min-height: calc(100% - 2rem);
		padding: 1.5rem;
	}
}

@font-face {
	font-family: 'Overpass Bold';
	src: local('Overpass Bold'), local('Overpass-Bold'), url('../fonts/Overpass-Bold.woff2') format('woff2'), url('../fonts/Overpass-Bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Overpass Regular';
	src: local('Overpass Regular'), local('Overpass-Regular'), url('../fonts/Overpass-Regular.woff2') format('woff2'), url('../fonts/Overpass-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Overpass Black';
	src: local('Overpass Black'), local('Overpass-Black'), url('../fonts/Overpass-Black.woff2') format('woff2'), url('../fonts/Overpass-Black.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
