body {
	background-color: #f8f9fa;
	font-family: Arial, sans-serif;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* For Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.container {
	margin-top: 100px;
	width: 650px;
	max-width: fit-content;
	margin-bottom: 100px;
}

.container h3 {
	font-weight: bold;
}

.logo-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}

.logo {
	max-width: 300px;
}

.form-group label {
	font-weight: bold;
}

.phone-input-group {
	display: flex;
	align-items: center;
}

.phone-input-group span {
	margin-right: 5px;
	font-weight: bold;
}

.phone-input-group input {
	flex: 1;
}

.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
}

.alert {
	margin-top: 20px;
}

#resend-sms {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.video-manuals {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: inherit;
}

.video-manuals iframe {
	width: 100%;
	height: 500px;
}

.video-manuals h3,
h4 {
	text-align: center;
	font-weight: bold;
	margin: 20px 0;
}

.finished {
	margin-top: 50px;
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: inherit;
	border: 1px solid #28a745;
	border-radius: 5px;
	background-color: #d4edda;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
	.container {
		margin-top: 50px;
		margin-bottom: 50px;
	}

	.logo-wrapper {
		display: flex;
		justify-content: center;
		margin-bottom: 15px;
	}

	.logo {
		max-width: 250px;
	}

	.form-group label {
		font-size: 14px;
	}

	.btn-primary {
		font-size: 14px;
		padding: 10px 20px;
	}
}