@charset "ISO-8859-1";

/*  * { */
/*             margin: 0; */
/*             padding: 0; */
/*             box-sizing: border-box; */
/*             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
/*         } */
body {
	/*             background: linear-gradient(135deg, #004a99, #0077cc); */
	color: #e0e0e0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}

.form-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	padding: 20px;
}

.login-container {
	width: 100%;
	max-width: 450px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	animation: fadeIn 0.8s ease-out;
	margin-top: 60px;
}

@
keyframes fadeIn {from { opacity:0;
	transform: translateY(-30px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}
.login-header {
	background: linear-gradient(to right, #e0f7ff, #b3e5fc);
	color: white;
	padding: 10px;
	text-align: center;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px;
}

/* .logo i { */
/* 	font-size: 2.5rem; */
/* 	color: white; */
/* } */

.logo h1 {
	font-size: 2.2rem;
	font-weight: 700;
}

.login-header p {
	opacity: 0.9;
	line-height: 1.6;
	max-width: 350px;
	margin: 0 auto;
}

.login-body {
	padding: 40px;
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #004a99;
}

.input-icon {
	position: absolute;
	left: 15px;
	top: 42px;
	color: #0077cc;
	font-size: 1.2rem;
}

.form-group input {
	width: 100%;
	padding: 14px 14px 14px 45px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-group input:focus {
	outline: none;
	border-color: #0077cc;
	box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.2);
}

.password-toggle {
	position: absolute;
	right: 15px;
	top: 42px;
	color: #777;
	cursor: pointer;
	font-size: 1.2rem;
}

.password-toggle:hover {
	color: #004a99;
}

.remember-forgot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.remember {
	display: flex;
	align-items: center;
	gap: 8px;
}

.remember input {
	/*             width: 18px; */
	/*             height: 18px; */
	cursor: pointer;
}

.remember button {
	height:40px;
	width: 30%;
}

.remember label {
	color: #555;
	cursor: pointer;
}

.forgot-password {
	color: #0077cc;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.forgot-password:hover {
	color: #004a99;
	text-decoration: underline;
}

.btn-login {
	width: 100%;
	padding: 14px;
	background: linear-gradient(to right, #004a99, #0077cc);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 20px;
}

.btn-login:hover {
	background: linear-gradient(to right, #003d80, #0066b3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-login {
	text-align: center;
	margin: 25px 0;
	position: relative;
}

.social-login::before, .social-login::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 30%;
	height: 1px;
	background: #ddd;
}

.social-login::before {
	left: 0;
}

.social-login::after {
	right: 0;
}

.social-login p {
	color: #666;
	margin-bottom: 15px;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s;
}

.social-icon:hover {
	transform: translateY(-3px);
}

.facebook {
	background: #3b5998;
}

.google {
	background: #dd4b39;
}

.twitter {
	background: #1da1f2;
}

.signup-link {
	text-align: center;
	margin-top: 20px;
}

.signup-link p {
	color: #666;
}

.signup-link a {
	color: #0077cc;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.signup-link a:hover {
	color: #004a99;
	text-decoration: underline;
}

.error-message {
	background: #f8d7da;
	color: #721c24;
	padding: 10px 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
}

.error-message.show {
	display: block;
	animation: shake 0.5s ease;
}

@
keyframes shake { 0%, 100% {
	transform: translateX(0);
}

25




%
{
transform




:




translateX


(




-5px




)


;
}
75




%
{
transform




:




translateX


(




5px




)


;
}
}
@media ( max-width : 500px) {
	.login-container {
		max-width: 100%;
	}
	.login-header {
		padding: 20px;
	}
	.login-body {
		padding: 30px 20px;
	}
	.remember-forgot {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	.social-login::before, .social-login::after {
		width: 25%;
	}
}