.auth-container {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	width: 350px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	border-radius: 7px;
	padding: 10px;
	z-index: 199;
}

.auth-container .form-box h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #333;
}

.auth-container form input {
	width: 100%;
	padding: 10px;
	margin: 0.7rem 0;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.auth-container form button {
	width: 100%;
	padding: 10px;
	background: #fa6016;
	border: none;
	border-radius: 6px;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

.auth-container form button:hover {
	background: #db4e0d;
}

#toggle-text-container {
	margin-top: 1rem;
	text-align: center;
	font-size: 14px;
}

#toggle-text-container a {
	color: #fa6016;
	text-decoration: none;
	font-weight: bold;
	padding: 0;
	float: none;
}

.register-field {
	display: none;
}

.auth-container .forgot-password-text {
	text-align: right;
	margin-top: -10px;
	margin-bottom: 5px;
	font-size: 14px;
}