@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	color: #333;
}

.container {
	width: 100%;
	max-width: 400px;
	padding: 20px;
}

.login-box {
	background-color: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.logo h2 {
	margin: 0 0 0.5rem;
	color: #333;
	font-weight: 600;
	font-size: 1.8rem;
}

.login-box h3 {
	margin: 0;
	font-weight: 600;
	font-size: 1.5rem;
}

.login-box p {
	margin-bottom: 1.5rem;
	color: #888;
}

.input-group {
	margin-bottom: 1.2rem;
	text-align: left;
}

.input-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #555;
	font-weight: 500;
}

.input-group input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-sizing: border-box;
	transition: border-color 0.3s;
}

.input-group input:focus {
	outline: none;
	border-color: #667eea;
}

.options {
	text-align: right;
	margin-bottom: 1.5rem;
}

.forgot-password {
	color: #667eea;
	text-decoration: none;
	font-size: 0.9rem;
}

button {
	width: 100%;
	padding: 0.85rem;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

button:hover {
	transform: translateY(-2px);
}

#login-form button {
	background-color: #667eea;
}

#login-form button:hover {
	background-color: #5a6fd6;
}

.separator {
	display: flex;
	align-items: center;
	text-align: center;
	color: #aaa;
	margin: 1.5rem 0;
}

.separator span {
	padding: 0 10px;
}

.separator::before,
.separator::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #ddd;
}

.social-login .social-btn {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	color: #333;
}

.social-login .social-btn:hover {
	background: #e9e9e9;
}

.social-login .social-btn i {
	margin-right: 10px;
	font-size: 1.2rem;
}

.social-btn.google i {
	color: #db4437;
}
.social-btn.facebook i {
	color: #4267b2;
}

.signup-link {
	margin-top: 1.5rem;
	font-size: 0.9rem;
}

.signup-link a {
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
}

.custom-alert-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

.custom-alert-box {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 320px;
	width: 90%;
}

.custom-alert-box p {
	margin: 0 0 1.5rem;
	color: #333;
	font-size: 1rem;
}

.custom-alert-box button {
	background-color: #667eea;
	color: white;
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
}

.custom-alert-box button:hover {
	background-color: #5a6fd6;
}
