/* FlowOps Auth Theme v25.4.24
   Beta RC auth UI: compact white surfaces, centred input baselines, stable mobile behaviour. */

body.flowops-auth-body {
    --fo-auth-ink: #08080b;
    --fo-auth-muted: #696e78;
    --fo-auth-soft: #8c929d;
    --fo-auth-line: #e4e6eb;
    --fo-auth-line-strong: #cfd3dc;
    --fo-auth-surface: rgba(255, 255, 255, 0.97);
    --fo-auth-surface-soft: #f7f8fa;
    --fo-auth-button: #09090c;
    --fo-auth-button-hover: #1b1b20;
    --fo-auth-green: #11b86b;
    --fo-auth-blue: #5e6ad2;
    --fo-auth-error: #b42318;
    --fo-auth-success: #087443;
    --fo-auth-shadow: 0 30px 76px rgba(15, 23, 42, 0.075), 0 8px 24px rgba(15, 23, 42, 0.045);
    min-height: 100svh;
    margin: 0;
    overflow-x: hidden;
    color: var(--fo-auth-ink);
    background:
        radial-gradient(circle at 50% 0%, rgba(17, 184, 107, 0.065), transparent 31%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 56%, #fbfbfc 100%) !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: light;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body.flowops-auth-body *,
body.flowops-auth-body *::before,
body.flowops-auth-body *::after {
    box-sizing: border-box;
}

body.flowops-auth-body a {
    color: inherit;
}

.flowops-auth-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 76px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(232, 234, 239, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.flowops-auth-topbrand,
.flowops-auth-toplink,
.flowops-auth-brand,
.flowops-invite-brand {
    color: var(--fo-auth-ink) !important;
    text-decoration: none !important;
}

.flowops-auth-topbrand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15.5px;
    line-height: 1;
    font-weight: 760;
    letter-spacing: -0.035em;
}

.flowops-auth-topbrand img,
.flowops-auth-brand img,
.flowops-invite-brand img {
    width: 27px;
    height: 27px;
    display: block;
    object-fit: contain;
    border-radius: 7px;
    filter: drop-shadow(0 4px 10px rgba(17, 184, 107, 0.14));
}

.flowops-auth-toplink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #3f424a !important;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: -0.012em;
    transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.flowops-auth-toplink:hover,
.flowops-auth-toplink:focus-visible {
    color: #08080b !important;
    background: #f6f7f8;
    border-color: #eceef2;
    outline: none;
}

.flowops-auth-shell,
.flowops-auth-split,
.flowops-auth-wrap,
.flowops-invite-wrap {
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 92px 20px 40px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.flowops-auth-panel,
.flowops-auth-panel-form {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: transparent !important;
}

.flowops-auth-panel-brand,
.flowops-auth-panel-brand-register,
.flowops-auth-feature-list,
.flowops-auth-preview,
.flowops-auth-kicker,
.flowops-auth-panel-inner,
.flowops-auth-page-note,
.flowops-auth-brand-row,
.flowops-auth-divider,
.flowops-auth-microcopy,
.flowops-auth-or,
.flowops-auth-options,
.flowops-auth-socials {
    display: none !important;
}

.flowops-auth-card,
.flowops-invite-card {
    width: min(348px, 100%);
    margin: 0 auto;
    padding: 27px 24px 22px;
    color: var(--fo-auth-ink);
    background: var(--fo-auth-surface) !important;
    border: 1px solid rgba(230, 232, 238, 0.98) !important;
    border-radius: 28px;
    box-shadow: var(--fo-auth-shadow) !important;
    text-align: center;
    transform-origin: 50% 44%;
    animation: flowopsAuthEnter .28s cubic-bezier(.2,.8,.2,1) both;
}

.flowops-auth-card-register {
    width: min(370px, 100%);
}

.flowops-auth-card-otp {
    width: min(340px, 100%);
    padding-top: 24px;
}

.flowops-auth-card-wide,
.flowops-invite-card {
    width: min(420px, 100%);
}

.flowops-auth-card-logo {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
    background: linear-gradient(180deg, #ffffff, #f8f9fb);
    border: 1px solid #e8eaef;
    border-radius: 17px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.flowops-auth-card-logo img {
    width: 33px;
    height: 33px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(17, 184, 107, 0.18));
}

.flowops-auth-card h1,
.flowops-auth-card h2,
.flowops-invite-hero h1 {
    margin: 0;
    color: #08080b !important;
    font-size: 22px !important;
    line-height: 1.13 !important;
    letter-spacing: -0.055em !important;
    font-weight: 790 !important;
    text-align: center;
}

.flowops-auth-intro,
.flowops-invite-hero p,
.flowops-auth-panel p {
    margin: 8px auto 20px !important;
    max-width: 294px;
    color: var(--fo-auth-muted) !important;
    font-size: 13.25px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.012em;
    text-align: center;
}

.flowops-auth-intro strong {
    color: #2e3036;
    font-weight: 660;
}

.flowops-form-stack {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
}

.flowops-form-grid,
.flowops-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px !important;
}

.flowops-auth-field {
    position: relative;
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.flowops-auth-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.flowops-auth-body .flowops-auth-input,
body.flowops-auth-body .flowops-auth-card input[type="text"],
body.flowops-auth-body .flowops-auth-card input[type="email"],
body.flowops-auth-body .flowops-auth-card input[type="password"],
body.flowops-auth-body .flowops-invite-card input[type="text"],
body.flowops-auth-body .flowops-invite-card input[type="email"],
body.flowops-auth-body .flowops-invite-card input[type="password"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: block !important;
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 1px solid #e1e3e8 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0d0d12 !important;
    -webkit-text-fill-color: #0d0d12 !important;
    caret-color: #0d0d12 !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 520 !important;
    line-height: 46px !important;
    letter-spacing: -0.012em !important;
    text-align: left !important;
    vertical-align: middle !important;
    outline: none !important;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.015), 0 1px 1px rgba(15, 23, 42, 0.018) !important;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease !important;
}

body.flowops-auth-body .flowops-auth-input::placeholder,
body.flowops-auth-body .flowops-auth-card input::placeholder,
body.flowops-auth-body .flowops-invite-card input::placeholder {
    color: #9298a3 !important;
    -webkit-text-fill-color: #9298a3 !important;
    opacity: 1 !important;
    line-height: 46px !important;
}

body.flowops-auth-body .flowops-auth-input:hover,
body.flowops-auth-body .flowops-auth-card input:hover,
body.flowops-auth-body .flowops-invite-card input:hover {
    border-color: var(--fo-auth-line-strong) !important;
    background: #ffffff !important;
}

body.flowops-auth-body .flowops-auth-input:focus,
body.flowops-auth-body .flowops-auth-card input:focus,
body.flowops-auth-body .flowops-invite-card input:focus {
    border-color: var(--fo-auth-blue) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(94, 106, 210, 0.115), inset 0 1px 0 rgba(15, 23, 42, 0.01) !important;
    transform: none !important;
}

body.flowops-auth-body .flowops-auth-input:-webkit-autofill,
body.flowops-auth-body .flowops-auth-card input:-webkit-autofill,
body.flowops-auth-body .flowops-invite-card input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #0d0d12 !important;
    caret-color: #0d0d12 !important;
    transition: background-color 9999s ease-in-out 0s !important;
}

.flowops-auth-field-password {
    position: relative !important;
    min-height: 46px;
}

body.flowops-auth-body .flowops-auth-field-password .flowops-auth-input,
body.flowops-auth-body .flowops-auth-field-password input[type="password"],
body.flowops-auth-body .flowops-auth-field-password input[type="text"] {
    padding-right: 72px !important;
}

body.flowops-auth-body .flowops-password-toggle,
body.flowops-auth-body .flowops-auth-card .flowops-password-toggle,
body.flowops-auth-body .flowops-invite-card .flowops-password-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 9px !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    min-width: 50px !important;
    height: 28px !important;
    min-height: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #747984 !important;
    font-family: inherit !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 680 !important;
    letter-spacing: -0.01em !important;
    cursor: pointer;
    transform: translateY(-50%) !important;
}

body.flowops-auth-body .flowops-password-toggle:hover,
body.flowops-auth-body .flowops-password-toggle:focus-visible {
    background: #f2f3f5 !important;
    color: #111116 !important;
    outline: none !important;
}

.flowops-auth-inline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: -1px 2px 1px !important;
    color: #6a6f79;
    font-size: 12.25px;
    line-height: 1.4;
}

.flowops-auth-checkbox,
.flowops-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 9px !important;
    margin: 1px 2px 0 !important;
    color: #6b707a !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 450 !important;
    text-align: left;
    cursor: pointer;
}

.flowops-auth-checkbox input,
.flowops-auth-check input {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    margin: 1px 0 0 !important;
    border-radius: 4px !important;
    accent-color: #0a0a0d !important;
}

.flowops-auth-inline-link,
.flowops-auth-footer-link a,
.flowops-auth-help a,
.flowops-invite-help a {
    color: #111116 !important;
    text-decoration: none !important;
    font-weight: 650;
}

.flowops-auth-inline-link:hover,
.flowops-auth-footer-link a:hover,
.flowops-auth-help a:hover,
.flowops-invite-help a:hover {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.flowops-btn,
.flowops-auth-card button,
.flowops-invite-card button,
.flowops-auth-card .button,
.flowops-invite-card .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    width: auto;
    min-height: 46px !important;
    height: 46px;
    padding: 0 17px !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 720 !important;
    letter-spacing: -0.016em !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background .17s ease, border-color .17s ease, color .17s ease, transform .17s ease, box-shadow .17s ease !important;
}

.flowops-btn-block {
    width: 100% !important;
}

.flowops-btn-primary,
.flowops-auth-card button[type="submit"].flowops-btn-primary,
.flowops-auth-card a.flowops-btn-primary,
.flowops-invite-card a.flowops-btn-primary {
    background: var(--fo-auth-button) !important;
    border-color: var(--fo-auth-button) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(8, 8, 11, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

.flowops-btn-primary:hover,
.flowops-btn-primary:focus-visible {
    background: var(--fo-auth-button-hover) !important;
    border-color: var(--fo-auth-button-hover) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    outline: none;
    box-shadow: 0 15px 28px rgba(8, 8, 11, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.flowops-btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 8px 18px rgba(8, 8, 11, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.flowops-btn-secondary,
.flowops-btn-ghost {
    background: #f6f7f8 !important;
    border-color: #ebedf0 !important;
    color: #202126 !important;
    box-shadow: none !important;
}

.flowops-btn-secondary:hover,
.flowops-btn-ghost:hover,
.flowops-btn-secondary:focus-visible,
.flowops-btn-ghost:focus-visible {
    background: #eef0f2 !important;
    border-color: #e0e3e7 !important;
    color: #111116 !important;
    transform: translateY(-1px) !important;
    outline: none;
}

.flowops-auth-card form.is-submitting .flowops-btn-primary,
.flowops-auth-card form.is-submitting button[type="submit"],
.flowops-invite-card form.is-submitting .flowops-btn-primary,
.flowops-invite-card form.is-submitting button[type="submit"] {
    position: relative;
    pointer-events: none;
    opacity: 0.92;
}

.flowops-auth-card form.is-submitting .flowops-btn-primary::after,
.flowops-auth-card form.is-submitting button[type="submit"]::after,
.flowops-invite-card form.is-submitting .flowops-btn-primary::after,
.flowops-invite-card form.is-submitting button[type="submit"]::after {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 3px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: flowopsAuthSpin .72s linear infinite;
}

.flowops-auth-footer-link,
.flowops-invite-help,
.flowops-auth-help {
    margin: 14px 0 0 !important;
    color: var(--fo-auth-muted) !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    text-align: center;
}

.flowops-auth-help {
    margin-top: -3px !important;
    font-size: 11.75px !important;
    color: #7c8088 !important;
}

.flowops-auth-security-note {
    margin: -1px 0 0 !important;
    color: #8a8f99 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    text-align: center !important;
}

.flowops-auth-security-note::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 6px;
    vertical-align: 1px;
    border-radius: 50%;
    background: var(--fo-auth-green);
    box-shadow: 0 0 0 3px rgba(17, 184, 107, 0.10);
}

.flowops-message {
    margin: 0 0 14px !important;
    padding: 9px 11px !important;
    border: 1px solid #e3e4e8 !important;
    border-radius: 13px !important;
    background: #fafafa !important;
    color: #3f4652 !important;
    font-size: 12.25px !important;
    line-height: 1.42 !important;
    text-align: left !important;
}

.flowops-message.success {
    background: #f0fdf4 !important;
    border-color: #b9f2cf !important;
    color: var(--fo-auth-success) !important;
}

.flowops-auth-mini-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: -7px auto 12px !important;
    color: var(--fo-auth-success) !important;
    font-size: 12.25px !important;
    line-height: 1.35 !important;
    font-weight: 620 !important;
    text-align: center !important;
}

.flowops-auth-mini-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--fo-auth-green);
    box-shadow: 0 0 0 4px rgba(17, 184, 107, 0.11);
}

.flowops-message.error {
    background: #fff4f2 !important;
    border-color: #ffd7d2 !important;
    color: var(--fo-auth-error) !important;
}

.flowops-message.info {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    color: #1d4ed8 !important;
}

.flowops-password-strength {
    height: 3px !important;
    overflow: hidden;
    margin: -1px 16px -5px !important;
    border-radius: 999px;
    background: #f1f2f4;
}

.flowops-password-strength span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #ef4444;
    transition: width .2s ease, background .2s ease;
}

.flowops-password-strength[data-strength="0"] span,
.flowops-password-strength[data-strength="1"] span {
    background: #ef4444;
}

.flowops-password-strength[data-strength="2"] span {
    background: #f59e0b;
}

.flowops-password-strength[data-strength="3"] span,
.flowops-password-strength[data-strength="4"] span {
    background: var(--fo-auth-green);
}

.flowops-password-strength-label {
    margin: -2px 4px 0 !important;
    color: #7b808a !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.flowops-hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.flowops-auth-field-otp {
    gap: 8px !important;
}

.flowops-otp-boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px;
    width: 100%;
}

body.flowops-auth-body .flowops-auth-card .flowops-otp-boxes .flowops-otp-box,
body.flowops-auth-body .flowops-otp-box {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e1e3e8 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0d0d12 !important;
    -webkit-text-fill-color: #0d0d12 !important;
    caret-color: #0d0d12 !important;
    text-align: center !important;
    font-family: inherit !important;
    font-size: 17px !important;
    font-weight: 780 !important;
    line-height: 46px !important;
    font-variant-numeric: tabular-nums !important;
    outline: none !important;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.015), 0 1px 1px rgba(15, 23, 42, 0.018) !important;
    transition: border-color .16s ease, box-shadow .16s ease !important;
}

body.flowops-auth-body .flowops-auth-card .flowops-otp-box:focus,
body.flowops-auth-body .flowops-otp-box:focus {
    border-color: var(--fo-auth-blue) !important;
    box-shadow: 0 0 0 4px rgba(94, 106, 210, 0.115), inset 0 1px 0 rgba(15, 23, 42, 0.01) !important;
}

.flowops-otp-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

.flowops-resend-form {
    margin-top: 1px !important;
}

.flowops-success-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
    color: #ffffff;
    background: #09090c;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(8, 8, 11, 0.16);
    animation: flowopsAuthSuccess .42s cubic-bezier(.2,.8,.2,1) both;
}

.flowops-card-block,
.flowops-invite-details,
.flowops-invite-next {
    border: 1px solid var(--fo-auth-line) !important;
    border-radius: 18px !important;
    background: #fafafa !important;
    padding: 14px !important;
    color: #303036 !important;
}

.flowops-invite-details {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.flowops-invite-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #4b5563 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.flowops-invite-detail-row strong {
    color: #15161a;
    font-weight: 680;
    text-align: right;
    overflow-wrap: anywhere;
}

.flowops-invite-next {
    margin-top: 4px;
    text-align: left;
}

.flowops-invite-next strong {
    display: block;
    margin-bottom: 3px;
    color: #15161a;
    font-size: 13px;
}

.flowops-invite-next p {
    margin: 0 !important;
    color: #656b75 !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

.flowops-invite-actions,
.flowops-removed-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.flowops-removed-action {
    width: 100%;
}

@keyframes flowopsAuthEnter {
    from { opacity: 0; transform: translateY(8px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes flowopsAuthSpin {
    to { transform: rotate(360deg); }
}

@keyframes flowopsAuthSuccess {
    from { opacity: 0; transform: translateY(6px) scale(.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 760px) {
    .flowops-auth-topbar {
        height: 62px;
        padding: 0 18px;
    }

    .flowops-auth-topbrand span {
        display: none;
    }

    .flowops-auth-topbrand img {
        width: 30px;
        height: 30px;
    }

    .flowops-auth-shell,
    .flowops-auth-split,
    .flowops-auth-wrap,
    .flowops-invite-wrap {
        align-items: center;
        padding: 76px 16px 28px !important;
    }

    .flowops-auth-card,
    .flowops-auth-card-register,
    .flowops-invite-card {
        width: min(360px, 100%) !important;
        padding: 24px 19px 20px !important;
        border-radius: 24px !important;
    }

    .flowops-auth-card h1,
    .flowops-auth-card h2,
    .flowops-invite-hero h1 {
        font-size: 21px !important;
    }

    .flowops-otp-boxes {
        gap: 6px;
    }

    body.flowops-auth-body .flowops-auth-card .flowops-otp-boxes .flowops-otp-box,
    body.flowops-auth-body .flowops-otp-box {
        height: 46px !important;
        min-height: 46px !important;
        line-height: 46px !important;
        border-radius: 13px !important;
    }
}

@media (max-width: 374px) {
    .flowops-auth-card,
    .flowops-auth-card-register,
    .flowops-invite-card {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .flowops-otp-boxes {
        gap: 5px;
    }

    body.flowops-auth-body .flowops-auth-card .flowops-otp-boxes .flowops-otp-box,
    body.flowops-auth-body .flowops-otp-box {
        height: 43px !important;
        min-height: 43px !important;
        line-height: 43px !important;
        font-size: 16px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flowops-auth-body *,
    .flowops-auth-body *::before,
    .flowops-auth-body *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
