body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4f6f9;
	font-size:16px;
	font-family: Tahoma,Times, Arial, sans-serif;
}

.box-result {
	background: #fff;
	border-radius: 14px;	
	box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
	padding:2%;
	display:none;
	width:100%;
	margin-bottom:150px;
}
.box-search {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
	padding:2%;
	min-width:400px;
	margin-bottom:150px;
}

@media (min-width: 768px) {   
	.box-search { 
		min-width:768px;
	}
}

/* Phone */
@media (max-width: 767px) {
    .box-search {
        min-width: 300px; 
    }
}


.box-search legend { 
    margin-left: 10px; 
    background: white;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
    padding: 10px;
    margin: 15px 0;
}

.box-search h3 {
	margin-top: 0;
}

.captcha {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
}

.captcha-code {
	flex: 1;
	height: 55px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 8px;
	background:
		repeating-linear-gradient(
			25deg,
			#f1f5f9,
			#f1f5f9 5px,
			#e2e8f0 6px,
			#e2e8f0 7px
		);

	color: #1e293b;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 7px;

	user-select: none;
	/*text-decoration: line-through;*/
}

.refresh {
	width: 45px;
	height: 45px;

	border: 0;
	border-radius: 8px;

	background: #6366f1;
	color: white;

	font-size: 20px;
	cursor: pointer;
}

.refresh:hover {
	background: #4f46e5;
}

.input_captcha {
	width:80%;
	margin: 0 auto;
	padding: 10px;
	display: block;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	outline: none;
}

.input_captcha:focus {
	border-color: #6366f1;
}

input { 
	width:80%;
	display: block;
	padding: 10px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	outline: none;
	margin: 0 auto;
	text-align: center;
}

input:focus {
	border-color: #6366f1;
}

button.verify {
	width: 100%;
	margin-top: 15px;
	padding: 13px;

	border: 0;
	border-radius: 8px;

	background: #111827;
	color: white;

	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
}

.message {
	margin: 15px auto 0;
    font-size: 14px;
    display: none;
    width: fit-content;
}

.success {
	color: #16a34a;
}

.error {
	color: #dc2626;
}

.div-searching {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 14px 20px;

	color: #4b5563;
	font-size: 18px;
	font-weight: 500;
	display:none;
}

.div-searching-spinner {
	width: 38px;
	height: 38px;

	border: 2px solid #e5e7eb;
	border-top-color: #6366f1;

	border-radius: 50%;

	animation: div-searching-spin .7s linear infinite;
}

@keyframes div-searching-spin {
	to {
		transform: rotate(360deg);
	}
}

.div_error
{
	display:none;
	padding:15px 20px;
	margin:15px 0;
	background:#fff3cd;
	border:1px solid #ffe69c;
	border-radius:6px;
	color:#664d03;
	text-align:center;
	font-size:19px;
}

.back-button {
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;

	padding: 10px 16px;
	border: none;
	border-radius: 8px;
	background: #222;
	color: white;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	width:150px;
	height:50px;
}

.back-button:hover {
	background: #444;
}