body,
html {
	height: 100%;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: white;
}

body {
	background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../img/Kato_Kangaroo_Australia.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.container {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 2rem 4rem;
	border-radius: 10px;
	max-width: 600px;
	width: 90%;
}

.logo {
	width: 120px;
	margin-top: 1rem;
	margin-bottom: 0;
}

h1 {
	font-size: 3rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

#signup-form {
	display: flex;
	justify-content: center;
	align-items: center;
}

input[type="email"] {
	padding: 0.8rem;
	border: 1px solid #ccc;
	border-radius: 5px 0 0 5px;
	font-size: 1rem;
	border-right: none;
}

@media (max-width: 600px) {
	.container {
		padding: 2rem 1.5rem;
		width: 90%;
	}
}

button {
	padding: 0.8rem 1.5rem;
	border: 1px solid #28a745;
	background-color: #28a745;
	color: white;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	font-size: 1rem;
}

button:hover {
	background-color: #218838;
	border-color: #218838;
}

#message {
	margin-top: 1rem;
	font-size: 1rem;
}