@charset "UTF-8";
@import "../font-awesome/css/font-awesome.css";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: linear-gradient(135deg, rgba(53, 41, 79, 0.6), rgba(112, 106, 130, 0.5));*/
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(53, 41, 79, 0.5));
	z-index: -1;
}

.login-container {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(53, 41, 79, 0.75);
	border: 1px solid rgba(183, 179, 193, 0.2);
	border-radius: 24px;
	padding: 20px 20px;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
	width: 90%;
	max-width: 420px;
	animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo {
	text-align: center;
	margin-bottom: 32px;
}

.logo h1 {
	color: #b7b3c1;
	font-size: 26px;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.input-wrapper {
	position: relative;
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	background: rgba(112, 106, 130, 0.25);
	border: 1px solid rgba(183, 179, 193, 0.3);
	border-radius: 12px;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	outline: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
	background: rgba(112, 106, 130, 0.35);
	border-color: rgba(183, 179, 193, 0.5);
	box-shadow: 0 0 0 4px rgba(183, 179, 193, 0.15);
}

.login-btn {
	width: 100%;
	padding: 14px;
	background: rgba(183, 179, 193, 0.3);
	border: 1px solid rgba(183, 179, 193, 0.5);
	border-radius: 12px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	margin-top: 8px;
}

.login-btn:hover {
	background: rgba(183, 179, 193, 0.45);
	border-color: rgba(183, 179, 193, 0.7);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(53, 41, 79, 0.4);
}

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

.noneserver {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	text-align: center;
	margin-top: 20px;
}

.noneserver a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-decoration: none;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.noneserver a:hover {
	color: #ffffff;
}

@media (max-width: 480px) {
	.login-container {
		padding: 36px 28px;
		max-width: 100%;
		margin: 20px;
	}

	.logo h1 {
		font-size: 28px;
	}
}