  body {
		background-color: black;
		display: flex;
		justify-content: center;
		align-items: center;		
		margin: 0;
		font-family: Arial, sans-serif;
	}
	.button-container {
		display: flex;
		gap: 20px;
	}
	.button {
		padding: 15px 30px;
		font-size: 18px;
		font-weight: bold;
		color: white;
		border: none;
		cursor: pointer;
		border-radius: 5px;
		text-align: center;
	}
	.access-button {
		background-color: #00008B; /* Azul escuro */
	}
	.register-button {
		background-color: #FFA500; /* Laranja */
	}