.subscribe__page {
	background-color: #f2f2f2;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.subscribe__container {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 40%;
	max-width: 100%;
}

.subscribe__header-image {
	width: 100%;
	height: auto;
	display: block;
}

.subscribe__form-container {
	padding: 20px;
}

.subscribe__heading {
	font-size: 1rem;
	margin-bottom: 20px;
}

.subscribe__form {
	display: flex;
	flex-direction: column;
}

.subscribe__label {
	margin-bottom: 5px;
	font-size: 14px;
}

.subscribe__input {
	margin-bottom: 15px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.subscribe__button {
	padding: 10px;
	margin-top: 1rem;
	font-size: 16px;
	color: white;
	background-color: #5d5d5d;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.subscribe__button:hover {
	background-color: #3b3b3b
}

.subscribe__select {
	margin-bottom: 15px;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: white;
}

@media(max-width: 992px) {
	.subscribe__container {
		width: 60%;
	}
}

@media(max-width: 520px) {
	.subscribe__container {
		width: 90%;
	}
}