.login-step .ins-form-input,
.login-step .ins-form-item {
    border-radius: var(--ins-radius-full) !important;
}

.-google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);
    border-radius: var(--ins-radius-full) !important;
}

/* Step bar */
.stepbar { display: flex; gap: 8px; margin-bottom: 28px; }
.stepbar-line {
    height: 3px; flex: 1; border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.4s;
}
.stepbar-line.done, .stepbar-line.active { background: var(--primary, #087991); }

/* Alert */
.login-alert {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    animation: alertIn 0.28s ease;
}
.login-alert.show    { display: flex; }
.login-alert.error   { background: rgba(239,68,68,0.09); border: 1px solid rgba(239,68,68,0.2); color: #f87171; }
.login-alert.success { background: rgba(8,217,145,0.09); border: 1px solid rgba(8,217,145,0.2); color: #08d991; }
@keyframes alertIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Steps */
.login-cont-area   { overflow-x: hidden; }
.login-step        { display: none; }
.login-step.active { display: block; animation: lpStepIn 0.35s cubic-bezier(.4,0,.2,1); }
@keyframes lpStepIn {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* OTP boxes */
.lp-otp-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; }
.lp-otp-box {
    width: 52px; height: 58px;
    text-align: center;
    font-size: 1.5rem; font-weight: 700;
    font-family: var(--font, 'Montserrat'), sans-serif;
    color: var(--text, #f0f0f0);
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.09);
    border-radius: var(--ins-radius-l, 12px);
    outline: none;
    caret-color: var(--success, #08d991);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.lp-otp-box:focus {
    border-color: var(--success, #08d991);
    box-shadow: 0 0 0 4px rgba(8, 217, 145, 0.12);
    transform: scale(1.07);
}
.lp-otp-box.filled {
    border-color: rgba(8, 121, 145, 0.6);
    background: rgba(8, 121, 145, 0.08);
}

@media (max-width: 480px) {
    .lp-otp-box { width: 42px; height: 50px; font-size: 1.3rem; }
    .lp-otp-row { gap: 7px; }
}
