html,
body {
	height: 100%;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	background: linear-gradient(135deg, #e0f7fa, #b9fbc0);
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: auto;
}

.dots-container {
    text-align: center;
    padding: 10px 0;
}

.dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}
form {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}
.container {
	display: flex;
	flex-direction: column;
	border: 1px solid #b2dfdb;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	width: 90%;
	height: 500px;
	max-width: 800px;
	background-color: #ffffff;
	overflow: auto;
	box-sizing: border-box;
	padding: 20px;
}

.merchant-name,
.supported-payments {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}

.merchant-name {
	border-bottom: 1px solid #ddd;
}

.merchant-name h3,
.supported-payments h3 {
	margin: 0 0 15px;
	color: #333;
	font-size: 14px;
}

.merchant-name input {
	width: 100%;
	padding: 12px;
	border: 1px solid #4db6ac;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 12px;
	margin-bottom: 20px;
}

.merchant-namebutton {
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	background-color: #00796b;
	color: #ffffff;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: 20px;
	width: 100%;
}

.merchant-namebutton:hover {
	background-color: #004d40;
}

.merchant-name hr {
	width: 100%;
	border: 0;
	border-top: 2px solid #4db6ac;
	margin: 20px 0;
}

.payment-option img {
	width: 100px;
	height: auto;
	border-radius: 8px;
	margin-top: 20px;
}

.supported-payments img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Media Queries for responsiveness */
@media (min-width: 768px) {
	.container {
		flex-direction: row;
		padding: 0;
	}

	.merchant-name {
		border-right: 1px solid #ddd;
		border-bottom: none;
	}

	.merchant-name,
	.supported-payments {
		flex: 1;
		justify-content: center;
	}

	.merchant-name input {
		max-width: 400px;
	}

	.merchant-name button {
		margin-top: 10px;
	}

	.merchant-name hr {
		margin: 10px 0;
	}
}
