body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.registry-container {
	background-color: white;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	padding: 30px;
	width: 350px;
}

h2 {
	text-align: center;
	color: #333;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555;
}

.form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-sizing: border-box;
}

.btn {
	background-color: #4CAF50;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
}

.btn:hover {
	background-color: #45a049;
}

.error-message {
	color: red;
	margin-bottom: 15px;
	text-align: center;
}

.success-message {
	color: green;
	margin-bottom: 15px;
	text-align: center;
}

.login-link {
	text-align: center;
	margin-top: 15px;
}

.login-link a {
	color: #4CAF50;
	text-decoration: none;
}

.login-link a:hover {
	text-decoration: underline;
}

#hash-container {
	display: none;
}

/* CSS para ocultar las flechas del input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}