.signup-form {
	max-width: 420px;
	margin: 40px auto;
	padding: 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	font-family: system-ui, sans-serif;
}

.signup-form h2 {
	text-align: center;
	margin-bottom: 25px;
}

.field {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.field-row {
	display: flex;
	gap: 15px;
}

label {
	font-size: 14px;
	margin-bottom: 5px;
}

.req {
	color: red;
}

input {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

input:focus {
	outline: none;
	border-color: #007bff;
}

button {
	width: 100%;
	margin-top: 20px;
	padding: 12px;
	background: #007bff;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
}

button:hover {
	background: #0056cc;
}

.req {
	color: red;
}

.errStatus {
	margin-top: 5px;
	font-size: 12px;
	color: red;
	display: block;
	margin: 6px 0;
	font-size: 0.85rem;
}

button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#passwordRules li {
	list-style-type: none; /* Removes bullets */
	padding: 0; /* Optional: Removes default padding */
	margin: 0; /* Optional: Removes default margin */
	font-size: 0.8rem;
}
