.prmpw-modal[hidden] {
	display: none !important;
}

.prmpw-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.prmpw-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.prmpw-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(92vw, 480px);
	margin: 10vh auto 0;
	background: #121212;
	color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.prmpw-modal__content {
	padding: 28px;
}

input[type="button"].prmpw-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;

	font-size: 40px !important;
    padding: 0 3px;
    line-height: 1;
    right: 0;
    left: auto;
    float: right;
    background: none;
}

.prmpw-modal__title {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.2;
	color: inherit;
}

.prmpw-modal__text {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.9;
}

.prmpw-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.prmpw-form__input {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 15px;
	box-sizing: border-box;
}

.prmpw-form__input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.prmpw-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 20px;
	border: 0;
	border-radius: 8px;
	background: #ff7a00;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.prmpw-form__button:hover {
	opacity: 0.92;
}

.prmpw-form__button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.prmpw-spinner {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #ffffff;
	animation: prmpw-spin 0.8s linear infinite;
}

.prmpw-status {
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.5;
}

.prmpw-status.is-info {
	color: #b7d8ff;
}

.prmpw-status.is-success {
	color: #9effb0;
}

.prmpw-status.is-error {
	color: #ff9a9a;
}

html.prmpw-modal-open,
html.prmpw-modal-open body {
	overflow: hidden;
}

button[type="button"].prmpw-modal__close{
background:none !important;float:right !important;
}

@keyframes prmpw-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
