body {
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f7fa;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 20px;
}

.login-form-container {
	width: 100%;
	max-width: 420px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 2.5rem;
}

.form-control:focus {
	box-shadow: 0 0 0 0.25rem rgba(74, 107, 255, 0.25);
	border-color: #4a6bff;
}

.toggle-password {
	cursor: pointer;
}

.toggle-password:focus {
	box-shadow: none;
}

.btn-primary {
	background-color: #4361ee;
	border-color: #4361ee;
}

.btn-primary:hover {
	background-color: #3a56d4;
	border-color: #3a56d4;
}

.btn-outline-primary {
	color: #4361ee;
	border-color: #4361ee;
}

.btn-outline-primary:hover {
	background-color: #4361ee;
	border-color: #4361ee;
}

.divider {
	position: relative;
	text-align: center;
	margin: 1.5rem 0;
}

.divider::before, 
.divider::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 45%;
	height: 1px;
	background-color: #dee2e6;
}

.divider::before {
	left: 0;
}

.divider::after {
	right: 0;
}

.divider span {
	display: inline-block;
	padding: 0 10px;
	background-color: #fff;
	position: relative;
	color: #6c757d;
	font-size: 0.9rem;
}

.logo-container {
	text-align: center;
	margin-bottom: 1.5rem;
}

.logo-container i {
	font-size: 2rem;
	color: #4361ee;
	margin-right: 0.5rem;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: #4361ee;
}