body {
	font-family: 'hero-new', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue',
		sans-serif;
	max-width: 400px;
	margin: 50px auto;
	padding: 20px;
	background-color: #f5f5f5;
	text-transform: uppercase;
}

.container {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container svg {
	display: block;
	margin: 0 auto 40px auto;
}

h1 {
	font-family: 'hero-new', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue',
		sans-serif;
	color: #333;
	text-align: center;
	margin-bottom: 30px;
}

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

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555;
}

input[type='text'] {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
	text-transform: none;
}

input[type='text']:focus {
	outline: none;
	border-color: #007bff;
}

button {
	font-family: 'hero-new', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue',
		sans-serif;
	background-color: #0000ff;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	width: 100%;
	text-transform: uppercase;
}

button:hover {
	background-color: #0000cc;
}

button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.error {
	color: #fff;
	font-size: 14px;
	margin-top: 5px;
}

.success {
	color: white;
	font-size: 18px;
	text-align: center;
	margin-top: 20px;
}

#message {
	display: none;
	border-radius: 4px;
	text-align: center;
	padding: 10px;
	color: white;
}

#message.success {
	display: block;
	background-color: #28a745;
}

#message.error {
	display: block;
	background-color: #dc3545;
}
