.auth-page {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}

.auth-wrapper {
	width: 100%;
	max-width: 420px;
}

.auth-brand {
	text-align: center;
	margin-bottom: 2rem;
	color: white;
}

.auth-logo {
	width: 80px;
	height: 80px;
	margin-bottom: 1rem;
	background: white;
	border-radius: 50%;
	padding: 15px;
}

.auth-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.auth-subtitle {
	opacity: 0.8;
	margin-bottom: 0;
}

.auth-form-container {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.auth-form .form-label {
	font-weight: 500;
	color: #374151;
}

.auth-form .input-group-text {
	background: #f8fafc;
	border-color: #e5e7eb;
}

.auth-form .form-control {
	border-color: #e5e7eb;
	padding: 0.75rem;
}

.auth-form .form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.auth-btn {
	padding: 0.75rem;
	font-weight: 500;
	border-radius: 8px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	transition: transform 0.2s ease;
}

.auth-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.auth-footer {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

.alert {
	border-radius: 8px;
	border: none;
	margin-bottom: 1rem;
}

.alert-danger {
	background-color: #fef2f2;
	color: #dc2626;
}

.alert-success {
	background-color: #f0fdf4;
	color: #16a34a;
}
