.auth-modal {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}

.auth-modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 8px;
	width: 100%;
	max-width: 400px;
	position: relative;
}

.auth-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.auth-close:hover {
	color: #000;
}

.user-type-selector {
	margin-bottom: 15px;
}

.user-type-selector label {
	margin-right: 15px;
}

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

.form-control {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}

.btn-primary {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
}

.btn-primary:hover {
	background-color: #0056b3;
}

.auth-links {
	margin-top: 15px;
	text-align: center;
}

.auth-links a {
	color: #007bff;
	text-decoration: none;
}

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

.error-message {
	color: #dc3545;
	margin-top: 10px;
}

.success-message {
	color: #28a745;
	margin-top: 10px;
}