:root {
	--em-border: #e6e3ea;
	--em-cta: #e11a63;
	--em-muted: #6a6a6a;
	--em-primary: #5b2b82;
	--em-rose: #f6e9f1;
	--em-text: #1a1a1a;
}

.em-actions {
	margin-top: 1.25rem;
}

.em-alert {
	background: #fff;
	border-radius: 12px;
	border: 1px solid transparent;
	font-size: .98rem;
	margin-top: 1rem;
	padding: .9rem 1rem;
}

.em-btn {
	font-size: 18px !important;
	border-radius: 14px;
	border: 0;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	/*letter-spacing: .2px;*/
	padding: 0.95rem 1.2rem;
	transition: opacity .2s, transform .06s, box-shadow .2s;
}

.em-btn-primary {
	font-size: 18px !important;
	background: var(--em-cta);
	box-shadow: 0 8px 18px rgba(225,26,99,0.25);
	color: #fff;
}

.em-btn-primary:hover {
	filter: brightness(1.30);
}

.em-btn:active {
	transform: translateY(1px);
}

.em-btn[disabled] {
	box-shadow: none;
	cursor: not-allowed;
	opacity: .65;
}

.em-error {
	background: #ffffff;
	border-color: #ffe0e0;
	color: #a12323;
}

.em-eye-btn {
	align-items: center;
	background: linear-gradient(180deg,#fff 0%,#f9f7fb 100%);
	border-radius: 10px;
	border: none;
	box-shadow: inset 0 0 0 1px var(--em-border);
	color: var(--em-primary);
	cursor: pointer;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	position: absolute;
	right: .55rem;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
}

.em-eye-btn .eye-closed {
	display: none;
}

.em-eye-btn:hover {
	box-shadow: inset 0 0 0 1px var(--em-primary);
}

.em-field {
	margin: 1.1rem 0 0;
}

.em-h2 {
	color: var(--em-primary);
	font-size: 1.55rem;
	font-weight: 800;
	letter-spacing: .2px;
	margin: 0 0 .25rem;
}

.em-header {
	margin-bottom: 12px;
	text-align: left;
}

.em-info {
	background: #ffffff;
	border-color: #dfe7ff;
	color: #203a8f;
}

.em-input {
	background: #fff;
	border-radius: 14px;
	border: 1.5px solid var(--em-border);
	font-size: 1rem;
	padding: 1rem 3.25rem 1rem 1rem;
	transition: border-color .2s, box-shadow .2s, background-color .2s;
	width: 100%;
}

.em-input-wrap {
	align-items: center;
	display: flex;
	position: relative;
}

.em-input:focus {
	border-color: var(--em-primary);
	box-shadow: 0 0 0 4px rgba(91,43,130,0.12);
	outline: none;
}

.em-label {
	color: var(--em-text);
	display: block;
	font-weight: 700;
	margin: 0 0 .5rem;
}

.em-lead {
	color: var(--em-muted);
	line-height: 1.55;
	margin: 0;
}

.em-onb7 {
	background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--em-rose) 100%);
	border-radius: 22px;
	border: 1px solid var(--em-border);
	box-shadow: 0 8px 24px rgba(91,43,130,0.08);
	padding: 28px;
}

.em-rules {
	color: #4a4a4a;
	font-size: .95rem;
	list-style: none;
	margin: .7rem 0 0;
	padding: 0;
}

.em-rules .dot {
	background: #f0d9e6;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff inset, 0 0 0 1px var(--em-border);
	flex: 0 0 auto;
	height: .55rem;
	margin-top: .45rem;
	width: .55rem;
}

.em-rules li {
	align-items: flex-start;
	display: flex;
	gap: .6rem;
	padding: .25rem 0;
}

.em-success {
	background: #ffffff;
	border-color: #d9f3df;
	color: #176a2a;
}

@media (max-width:520px) {
	.em-h2 {
		font-size: 1.35rem;
	}

	.em-onb7 {
		border-radius: 18px;
		padding: 22px;
	}
}