a {
	color: #fef6ef;
}

#background {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 20px;
	position: relative;
	min-height: 100vh;
}

#main-title {
	font-size: 36px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 30px;
}

#subtitle {
	font-size: 18px;
	margin-bottom: 30px;
}
#login-box {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 30px 25px;
	border-radius: 20px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#login-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	text-align: left;
}

.input-field {
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
	border: none;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.2);
	font-size: 1rem;
	color: #fef6ef;
}

.input-field::placeholder {
	color: #fef6ef;
}

#forgot-password {
	text-align: right;
	margin-bottom: 20px;
}

#forgot-password a {
	font-size: 0.9rem;
	text-decoration: none;
}

#login-button {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 12px;
	background-color: #044d4f;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	margin-bottom: 20px;
	color: #fef6ef;
}

#login-button:hover {
	background-color: #033b3d;
	color: #fef6ef;
}

#signup-text {
	text-align: center;
	font-size: 0.95rem;
}

#signup-text a {
	text-decoration: none;
}

#car-image {
	width: 100%;
	max-width: 500px;
	margin-top: 40px;
}
#error-message {
	color: #a00;
	border-radius: 6px;
	margin-top: -15px;
	text-align: center;
	background: #ffe0e0;
}
.radio-group {
	margin-bottom: 15px;
	text-align:left;
}

.radio-group label {
	display: block;
	margin-bottom: 5px;
	cursor: pointer;
}

.radio-group input[type="radio"] {
	margin-right: 8px;
}