@import url("https://fonts.googleapis.com/css?family=Roboto:400,500|Rubik:500,700");

body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	background-color: #121212;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	color: #E8E8E8;
}

.main-container {
	background-color: #333;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.5);
	width: 90%;
	max-width: 500px;
	text-align: center;
}

h1 {
	font-size: 2.5rem;
	margin-top: 10px;
	margin-bottom: 20px;
}

h2 {
	font-size: 2rem;
	margin-top: 10px;
	margin-bottom: 20px;
}

p {
	margin-top: 0px;
	font-size: 1.2rem;
}

.inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

label {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

input, select {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	width: 100%;
	padding: 15px;
	margin-bottom: 20px;
	border: none;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	font-size: 1.1rem;
	background-color: #424242;
	color: #E8E8E8;
	box-sizing: border-box;
}

input:focus, select:focus {
	outline: 2px solid #232fa6;
	box-shadow: 0 0 8px rgba(35, 47, 166, 0.5);
}

input::placeholder {
  color: #777;
}

select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23e6e6e6' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 24px 24px;
}

.button {
	background-color: #232fa6;
	text-decoration: none;
	border: none;
	padding: 20px 40px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #E8E8E8;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	margin-top: 10px;
	margin-bottom: 10px;
}

.button:hover {
	background-color: #1528dd;
}

@media (max-width: 768px) {
	.main-container {
		padding: 20px;
		width: 80%;
	}

	h1 {
		font-size: 1.5rem;
		margin-top: 5px;
		margin-bottom: 10px;
	}

	form {
		width: 100%;
	}

	label {
		font-size: 1rem;
	}

	input, select {
		font-size: 1rem;
	}

	.button {
		padding: 15px 30px;
		font-size: 1rem;
		border-radius: 10px;
	}
}
