/* Custom authentication styles */
.auth-container {
	min-height: 100vh;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.auth-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	max-width: 500px;
	margin: 0 auto;
}

.auth-header {
	background: linear-gradient(135deg, #f7444e, #ff6b7a);
	color: white;
	text-align: center;
	padding: 30px;
}

.auth-header h1 {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
}

.auth-header p {
	margin: 10px 0 0 0;
	opacity: 0.9;
}

.auth-body {
	padding: 40px;
}

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

.form-label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: 500;
}

.form-control-auth {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s, box-shadow 0.3s;
	background-color: #fff;
}

.form-control-auth:focus {
	outline: none;
	border-color: #f7444e;
	box-shadow: 0 0 0 0.2rem rgba(247, 68, 78, 0.25);
}

.btn-auth {
	width: 100%;
	padding: 12px;
	background: linear-gradient(135deg, #f7444e, #ff6b7a);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-auth:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(247, 68, 78, 0.3);
}

.alert {
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: none;
	font-size: 14px;
	position: relative;
}

.alert-success {
	background-color: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}

.alert-danger {
	background-color: #f8d7da;
	color: #721c24;
	border-left: 4px solid #dc3545;
}

.alert i {
	margin-right: 8px;
}

.auth-links {
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
}

.auth-links a {
	color: #f7444e;
	text-decoration: none;
	font-weight: 500;
}

.auth-links a:hover {
	text-decoration: underline;
}

.password-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 5px;
}

.password-toggle:hover {
	color: #f7444e;
}

.position-relative {
	position: relative;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #666;
	font-size: 14px;
}

.remember-me input[type="checkbox"] {
	margin: 0;
}

/* Benefits section */
.benefits-section {
	margin-top: 60px;
	padding: 60px 0;
	background: #f8f9fa;
}

.benefit-card {
	background: white;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	margin-bottom: 30px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
	font-size: 60px;
	color: #f7444e;
	margin-bottom: 20px;
}

.benefit-title {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.benefit-description {
	color: #666;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
	.auth-body {
		padding: 30px 20px;
	}

	.auth-header {
		padding: 20px;
	}

	.auth-header h1 {
		font-size: 24px;
	}

	.benefit-card {
		padding: 30px 20px;
	}

	.benefit-icon {
		font-size: 50px;
	}
}

/* Dropdown user menu */
.dropdown-menu {
	border: none;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

.dropdown-item {
	padding: 10px 20px;
	transition: background-color 0.2s;
}

.dropdown-item:hover {
	background-color: #f8f9fa;
	color: #f7444e;
}

.dropdown-item i {
	width: 16px;
	margin-right: 10px;
}

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

.btn-outline-primary:hover {
	background-color: #f7444e;
	border-color: #f7444e;
	color: white;
}

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

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