/* Global for popup */
#lr-otp-overlay,
.lr-otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syne", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Popup box */
.lr-otp-box {
    background: #FFF5E9;
    border-radius: 18px;
    padding: 24px 24px 28px;
    max-width: 360px;
    width: 100%;
    position: relative;
    box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

/* Close button */
.lr-otp-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* Heading */
.lr-otp-title {
    margin: 0 32px 18px 0;
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

/* Body */
.lr-otp-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Steps */
.lr-otp-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lr-otp-label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

.lr-otp-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e2c9b7;
    background: #fff;
    font-size: 14px;
    outline: none;
    font-family: "Syne", system-ui, sans-serif;
}

.lr-otp-input:focus {
    border-color: #F3A88D;
    box-shadow: 0 0 0 1px #F3A88D33;
}

/* Primary button */
.lr-otp-btn {
    margin-top: 4px;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #F3A88D;
    color: #3C2A1E;
    font-family: "Syne", system-ui, sans-serif;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.lr-otp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(243,168,141,0.36);
}

/* Link-style button */
.lr-otp-link-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #F3A88D;
    cursor: pointer;
    text-decoration: underline;
    align-self: flex-start;
    font-family: "Syne", system-ui, sans-serif;
}

.lr-otp-link-btn:disabled {
    opacity: 0.55;
    cursor: default;
    text-decoration: none;
}

/* Errors & timer */
.lr-otp-error {
    min-height: 16px;
    font-size: 12px;
    color: #b3261e;
}

.lr-otp-timer {
    font-size: 12px;
    color: #555;
}

/* Icon button in header (shortcode output) */
.lr-otp-login-icon {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Simple circular user icon */
.lr-otp-user-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 2px solid #F3A88D;
    position: relative;
}

.lr-otp-user-icon::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #F3A88D;
}

.lr-otp-user-icon::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    border-radius: 999px 999px 0 0;
    border: 2px solid #F3A88D;
    border-bottom: none;
}



.lr-otp-brand-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lr-otp-brand-tagline {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
}

