@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.middleContainer {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 40px 35px;
	width: 100%;
	max-width: 420px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: fadeIn 0.5s ease-in;
}

@
keyframes fadeIn {from { opacity:0;
	transform: translateY(-20px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.logo-container {
	text-align: center;
	margin-bottom: 35px;
}

.logo-container img {
	max-width: 180px;
	height: auto;
	animation: logoFloat 3s ease-in-out infinite;
}

@
keyframes logoFloat { 0%, 100% {
	transform: translateY(0px);
}

50
%
{
transform
:
translateY(
-10px
);
}
}
.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: 600;
	font-size: 14px;
}

.input-wrapper {
	position: relative;
}

.form-group input[type="text"], .form-group input[type="password"] {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: #f8f9fa;
}

.form-group input[type="text"]:focus, .form-group input[type="password"]:focus
	{
	outline: none;
	border-color: #667eea;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.submit-btn {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
	transform: translateY(0);
}

.error-messages {
	margin-top: 20px;
}

.error-messages div {
	color: #e74c3c;
	font-size: 13px;
	margin-top: 8px;
	padding: 10px;
	background: #fee;
	border-radius: 8px;
	border-left: 4px solid #e74c3c;
	display: none;
}

.error-messages div:not(:empty) {
	display: block;
	animation: slideIn 0.3s ease;
}

@
keyframes slideIn {from { opacity:0;
	transform: translateX(-10px);
}

to {
	opacity: 1;
	transform: translateX(0);
}

}

/* Responsive */
@media ( max-width : 480px) {
	.middleContainer {
		padding: 30px 25px;
	}
	.logo-container img {
		max-width: 150px;
	}
}