* {
	margin: 0;
	padding: 0;
}

.inpur {
	width: 100%;
	height: 8%;
	border-radius: 2rem;
	border: 2px solid rgba(78, 147, 234, 1);
	margin-top: 1rem;
	padding: 1rem 2rem;
	text-align: center;
	font-size: 14px;
}

.btu {
	margin-top: 20px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: block;
	background-color: #1A6BFF;
	border-radius: 2rem;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.error {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);/
}

.error-content {
	padding: 30px;
	line-height: 1.5;
	word-break: break-all;
	overflow: auto;
	font-size: 18px;
	color: #fff;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	max-width: 80%;
	width: 100%;
	box-sizing: border-box;
}

.sha {
	display: block;
	background-color: #1A6BFF;
	border-radius: 2rem;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	animation-name: moveButton;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes moveButton {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}