/* Elemate Content Locker Style */
.eff-locker-content :where(
	button,
	[type="button"],
	[type="submit"]
):hover,
.eff-locker-content :where(
	button,
	[type="button"],
	[type="submit"]
):focus {
	background-color: unset;
	color: unset;
	text-decoration: none;
}


.eff-locker-content :where(
	[type="submit"]
):hover,
.eff-locker-content :where(
	[type="submit"]
):focus {
	background-color: #222;
	color: #fff;
}


.elemate-content-locker {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    border-radius: 8px;
}

.eff-locker-content {
    position: relative;
    width: 100%;
    min-height: 200px;
    transition: all 0.3s ease;
}

.eff-locker-blur {
    width: 100%;
    min-height: 150px;
    transition: filter 0.5s ease;
}

.eff-locker-content.is-strict .eff-locker-blur {
   /* background: #f0f0f1;*/
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.eff-strict-placeholder {
    width: 100%;
    min-height: 180px;
}

.eff-locker-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 20px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
}

.eff-locker-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    margin: auto;
}

.eff-icon {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.eff-headline {
    margin: 0 0 10px;
    font-size: 22px;
    color: #222;
}

.eff-subtext {
    margin: 0 0 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.eff-locker-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eff-step {
    display: none;
}

.eff-step.is-active {
    display: flex;
    flex-direction: column;
}

.eff-locker-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.eff-locker-form input:focus {
    border-color: #0073aa;
}

.eff-btn {
    padding: 12px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: background 0.3s;
	width:100%;
}

.eff-btn:hover {
    background: #444;
    color: #f0f0f0;
}

.eff-btn.is-loading,
.eff-btn:disabled {
    color: transparent;
    pointer-events: none;
}

.eff-btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: eff-spin 0.8s infinite linear;
    display: none;
}

.eff-btn.is-loading .eff-btn-loader {
    display: block;
}

.eff-link-btn {
    background: transparent;
    border: 0;
    color: #0073aa;
    font-size: 13px;
    cursor: pointer;
    padding: 2px 0;
}

.eff-link-btn:hover {
    color: #005177;
}

.eff-msg {
    margin-top: 10px;
    font-size: 13px;
    min-height: 18px;
}

.eff-msg.is-error {
    color: #d63638;
}

@keyframes eff-spin {
    to { transform: rotate(360deg); }
}

.eff-shake {
    animation: eff-shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes eff-shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.eff-editor-preview-notice {
    background: #ffcc00;
    color: #000;
    font-size: 10px;
    padding: 2px 5px;
    text-align: center;
    margin-bottom: 5px;
}

.eff-link-btn.eff-btn-resend, .eff-link-btn.eff-btn-change-email {
  display: inline-block;
}
.eff-btn-separator {
  margin: 3px;
}

.eff-step-otp.is-active {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  column-gap: 8px;
  width: 100%;
}

/* OTP input and verify button full width */
.eff-step-otp.is-active input,
.eff-step-otp.is-active .eff-btn-verify {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-self: stretch;
}

/* Third row: Resend | Change Email */
.eff-step-otp.is-active .eff-btn-resend {
  grid-column: 2;
}

.eff-step-otp.is-active .eff-btn-separator {
  grid-column: 3;
}

.eff-step-otp.is-active .eff-btn-change-email {
  grid-column: 4;
}

.eff-step-otp.is-active .eff-btn-resend,
.eff-step-otp.is-active .eff-btn-change-email,
.eff-step-otp.is-active .eff-btn-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eff-locker-form input::placeholder {
  opacity: 0.85;
}