body {
	background-image: url(../images/background.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
}

.modal {
	width: 90%;
	max-width: 550px;
	background-color: rgba(237, 237, 237, 0.95);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	position: relative;
	margin: 0 auto;
}

.modal1 {
	width: 90%;
	max-width: 550px;
	background-color: rgba(237, 237, 237, 0.95);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	position: relative;
	margin: 0 auto;
	padding: 0px 0px 10px;
}

#modalStep3 .message, #modalStep4 .message, #modalStep5 .message {
	padding-bottom: 20px;
}

.header {
	background-color: #d51140;
	color: white;
	padding: 15px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	font-size: 22px;
}

.image-container {
	padding: 20px;
	padding-bottom: 5px;
}

.image-container img {
	max-width: 100%;
	border-radius: 10px;
}

.message {
	color: #000;
	font-weight: normal;
	padding: 10px 0;
	line-height: 1.3;
}

.bold-text {
	font-weight: bold;
	color: #368700;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-bottom: 5px;
}

.bold-text img {
	width: 1em;
	height: 1em;
}

.warning-message {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 22px;
	padding: 10px 20px 5px;
}

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.button-container1 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: auto;
	margin-top: 0px;
	margin-bottom: 20px;
	gap: 1px;
	padding: 0 15px;
}

.confidential-text {
	color: #368700;
	margin-top: -30px;
	margin-bottom: 20px;
}

.button-container button {
	background-color: #d51140;
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 24px;
	border-radius: 5px;
	cursor: pointer;
	min-width: 225px;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.button-container1 button {
	background-color: #d51140;
	color: white;
	border: none;
	padding: 15px;
	font-size: 24px;
	border-radius: 5px;
	cursor: pointer;
	width: 150px;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.green-number {
	color: green;
	font-weight: bold;
}

.modal1 .image-container {
	display: flex;
	justify-content: space-between;
	padding: 0 15px 10px;
	gap: 5px;
}

.modal1 .image-container img {
	width: 150px;
	height: 150px;
	margin-bottom: 10px;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.modal1 .button-container1 button {
	width: 150px;
}

.button-container-3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.button-container-3 button {
	background-color: #d51140;
	color: white;
	border: none;
	padding: 10px;
	font-size: 19px;
	border-radius: 5px;
	cursor: pointer;
	width: 300px;
	height: 50px;
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

@media screen and (max-height: 500px) {
	.image-container img[src$="image.gif"] {
		content: url(../images/image1.gif);
	}

	.image-container img[src$="radar.gif"] {
		content: url(../images/radar1.gif);
	}

	.image-container img[src$="check.png"] {
		content: url(../images/check1.png);
	}

	.image-container img[src$="img/step2.jpg"] {
		content: url(../images/img/step22.jpg);
	}

	.image-container {
		padding: 0;
		margin-top: 10px;
	}

	.modal {
		width: 95%;
		max-width: 800px;
	}
}

@media screen and (max-width: 768px) {
	.modal1 .image-container {
		flex-direction: row;
		align-items: center;
	}

	.modal1 .image-container img {
		width: 75px;
		height: 75px;
		margin-bottom: 10px;
		margin: 0 10px;
	}

	.button-container1 {
		flex-direction: row;
		gap: 10px;
	}

	.button-container1 button {
		width: 100px;
		font-size: 18px;
		padding: 10px;
	}
}

.fade-in {
	animation: fadeIn 0.25s;
}

.fade-out {
	animation: fadeOut 0.25s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
	