.kt-popup-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
}

.kt-popup-modal-content {
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.kt-popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	cursor: pointer;
	line-height: 1;
	opacity: 0.6;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.kt-popup-close:hover {
	opacity: 1;
}

.kt-popup-tabs {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
	justify-content: center;
}

.kt-popup-tab-btn {
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0.5;
	border: none;
}

.kt-popup-tab-btn.is-active {
	opacity: 1;
}

.kt-input-group {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.kt-input-group label {
	display: block;
	margin-bottom: 6px;
}

.kt-input-group input {
	width: 100%;
	box-sizing: border-box;
}

.kt-form-actions {
	margin-bottom: 15px;
}

.kt-submit-btn {
	width: 100%;
	cursor: pointer;
	margin-top: 5px;
	transition: opacity 0.3s ease;
}

.kt-submit-btn:hover {
	opacity: 0.9;
}

.kt-form-footer {
	margin-top: 15px;
	text-align: left;
}

.kt-forgot-pw {
	text-decoration: none;
	opacity: 0.8;
}

.kt-forgot-pw:hover {
	opacity: 1;
	text-decoration: underline;
}

.kt-web3-zone {
	margin-top: 30px;
	padding-top: 20px;
	text-align: center;
}