
/* =========================================================
   NDPH AUTH SYSTEM
   FULLY ISOLATED CSS
========================================================= */

#ndph-auth-system,
#ndph-auth-system * {
    box-sizing: border-box;
}

#ndph-auth-system {

    --primary: #2563eb;
    --primary2: #4f46e5;
    --purple: #7c3aed;
    --green: #16a34a;
    --red: #dc2626;
    --dark: #101828;
    --muted: #667085;
    --border: #e4e7ec;

    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--dark);

    background:
        linear-gradient(
            135deg,
            #07111f 0%,
            #101a38 50%,
            #160b32 100%
        );
}


/* =========================================================
   BACKGROUND
========================================================= */

#ndph-auth-system .ndph-auth-bg {

    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

#ndph-auth-system .ndph-orb {

    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(4px);
    opacity: .65;

    animation:
        ndphOrbFloat
        15s
        ease-in-out
        infinite;
}

#ndph-auth-system .ndph-orb-1 {

    width: 420px;
    height: 420px;
    top: -160px;
    right: -100px;

    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.85),
            rgba(37,99,235,0)
            70%
        );
}

#ndph-auth-system .ndph-orb-2 {

    width: 500px;
    height: 500px;
    bottom: -220px;
    left: -160px;

    background:
        radial-gradient(
            circle,
            rgba(124,58,237,.8),
            rgba(124,58,237,0)
            70%
        );

    animation-delay: -6s;
}

#ndph-auth-system .ndph-orb-3 {

    width: 250px;
    height: 250px;
    top: 40%;
    right: 20%;

    background:
        radial-gradient(
            circle,
            rgba(6,182,212,.45),
            rgba(6,182,212,0)
            70%
        );

    animation-delay: -10s;
}

@keyframes ndphOrbFloat {

    0%,100% {
        transform:
            translate3d(0,0,0)
            scale(1);
    }

    50% {
        transform:
            translate3d(30px,-25px,0)
            scale(1.08);
    }
}

#ndph-auth-system .ndph-grid {

    position: absolute;
    inset: 0;
    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


/* =========================================================
   WRAPPER
========================================================= */

#ndph-auth-system .ndph-auth-wrapper {

    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px 18px;
}


/* =========================================================
   PANELS
========================================================= */

#ndph-auth-system .ndph-auth-panel {

    display: none;
    width: 100%;

    animation:
        ndphPanelIn
        .55s
        cubic-bezier(.22,1,.36,1);
}

#ndph-auth-system .ndph-auth-panel.ndph-panel-active {

    display: block;
}

@keyframes ndphPanelIn {

    from {
        opacity: 0;
        transform:
            translateY(25px)
            scale(.97);
    }

    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   LOGIN CARD
========================================================= */

#ndph-auth-system .ndph-auth-card {

    width: 100%;
    max-width: 465px;
    margin: auto;
    padding: 38px;

    border-radius: 28px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.38),

        0 0 0 1px
        rgba(255,255,255,.15);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);
}


/* =========================================================
   BRAND
========================================================= */

#ndph-auth-system .ndph-brand {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

#ndph-auth-system .ndph-brand-icon {

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;

    color: #fff;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--purple)
        );

    box-shadow:
        0 12px 28px
        rgba(37,99,235,.3);
}

#ndph-auth-system .ndph-brand-icon svg {

    width: 27px;
    height: 27px;
}

#ndph-auth-system .ndph-brand-text {

    display: flex;
    flex-direction: column;
}

#ndph-auth-system .ndph-brand-text strong {

    font-size: 20px;
    line-height: 1;
}

#ndph-auth-system .ndph-brand-text span {

    margin-top: 5px;
    color: var(--muted);

    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

#ndph-auth-system .ndph-auth-heading {

    text-align: center;
    margin-bottom: 28px;
}

#ndph-auth-system .ndph-heading-badge {

    display: inline-flex;
    padding: 5px 10px;
    margin-bottom: 10px;

    border-radius: 30px;

    color: var(--primary);
    background: #eff6ff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

#ndph-auth-system .ndph-auth-heading h1 {

    margin: 0 0 7px;

    font-size: 30px;
    line-height: 1.15;
    font-weight: 850;
}

#ndph-auth-system .ndph-auth-heading p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FIELDS
========================================================= */

#ndph-auth-system .ndph-field {

    margin-bottom: 18px;
}

#ndph-auth-system .ndph-field label {

    display: block;
    margin-bottom: 8px;

    color: #344054;

    font-size: 12px;
    font-weight: 750;
}

#ndph-auth-system .ndph-field label b {

    color: var(--red);
}

#ndph-auth-system .ndph-label-row {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

#ndph-auth-system .ndph-text-link {

    padding: 0;
    border: 0;

    color: var(--primary);
    background: transparent;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

#ndph-auth-system .ndph-input-box {

    position: relative;

    display: flex;
    align-items: center;
}

#ndph-auth-system .ndph-input-icon {

    position: absolute;
    left: 14px;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;

    color: #98a2b3;

    pointer-events: none;
}

#ndph-auth-system .ndph-input-icon svg {

    width: 18px;
    height: 18px;
}

#ndph-auth-system input,
#ndph-auth-system select,
#ndph-auth-system textarea {

    width: 100%;

    border: 1px solid var(--border);
    outline: none;

    color: var(--dark);
    background: #f9fafb;

    font-family: inherit;
    font-size: 13px;

    transition: .2s ease;
}

#ndph-auth-system input,
#ndph-auth-system select {

    height: 52px;

    padding:
        0 45px;

    border-radius: 13px;
}

#ndph-auth-system select {

    appearance: auto;
    cursor: pointer;
}

#ndph-auth-system textarea {

    min-height: 115px;

    padding:
        14px 15px 14px 45px;

    border-radius: 13px;

    resize: vertical;
}

#ndph-auth-system input:focus,
#ndph-auth-system select:focus,
#ndph-auth-system textarea:focus {

    border-color: var(--primary);

    background: #fff;

    box-shadow:
        0 0 0 4px
        rgba(37,99,235,.09);
}

#ndph-auth-system input::placeholder,
#ndph-auth-system textarea::placeholder {

    color: #a0a8b5;
}


/* =========================================================
   PASSWORD
========================================================= */

#ndph-auth-system .ndph-password-toggle {

    position: absolute;

    right: 6px;
    top: 6px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 9px;

    color: #98a2b3;
    background: transparent;

    cursor: pointer;
}

#ndph-auth-system .ndph-password-toggle:hover {

    color: var(--primary);
    background: #eff6ff;
}

#ndph-auth-system .ndph-password-toggle svg {

    width: 18px;
    height: 18px;
}


/* =========================================================
   ERRORS
========================================================= */

#ndph-auth-system .ndph-error {

    display: block;

    min-height: 16px;

    margin-top: 5px;

    color: var(--red);

    font-size: 10px;
    font-weight: 600;
}

#ndph-auth-system .ndph-invalid input,
#ndph-auth-system .ndph-invalid select,
#ndph-auth-system .ndph-invalid textarea {

    border-color: var(--red);
    background: #fff8f8;
}


/* =========================================================
   CHECKBOX
========================================================= */

#ndph-auth-system .ndph-check-row {

    display: flex;
    align-items: center;
    gap: 9px;

    margin: 3px 0 20px;

    color: #667085;
    font-size: 11px;

    cursor: pointer;
}

#ndph-auth-system .ndph-check-row input {

    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#ndph-auth-system .ndph-custom-check {

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1.5px solid #cbd5e1;
    border-radius: 5px;

    color: #fff;
    font-size: 11px;
}

#ndph-auth-system .ndph-check-row input:checked
+ .ndph-custom-check {

    border-color: var(--primary);
    background: var(--primary);
}

#ndph-auth-system .ndph-check-row input:checked
+ .ndph-custom-check::after {

    content: "✓";
}


/* =========================================================
   MAIN BUTTON
========================================================= */

#ndph-auth-system .ndph-main-btn {

    position: relative;

    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;
    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5,
            #7c3aed
        );

    background-size: 200% 200%;

    box-shadow:
        0 13px 30px
        rgba(37,99,235,.28);

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-position .4s ease;
}

#ndph-auth-system .ndph-main-btn::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255,255,255,.3) 50%,
            transparent 80%
        );

    transform:
        translateX(-120%);

    transition:
        transform .6s ease;
}

#ndph-auth-system .ndph-main-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(37,99,235,.36);

    background-position:
        100% 50%;
}

#ndph-auth-system .ndph-main-btn:hover::before {

    transform:
        translateX(120%);
}

#ndph-auth-system .ndph-main-btn:active {

    transform: scale(.98);
}

#ndph-auth-system .ndph-btn-content {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 10px;
}

#ndph-auth-system .ndph-btn-content svg {

    width: 17px;
    height: 17px;
}

#ndph-auth-system .ndph-loader {

    display: none;

    width: 19px;
    height: 19px;

    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;

    border-radius: 50%;

    animation:
        ndphSpin .7s linear infinite;
}

#ndph-auth-system .ndph-main-btn.loading
.ndph-btn-content {

    display: none;
}

#ndph-auth-system .ndph-main-btn.loading
.ndph-loader {

    display: block;
}

@keyframes ndphSpin {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   SOCIAL
========================================================= */

#ndph-auth-system .ndph-divider {

    display: flex;
    align-items: center;
    gap: 12px;

    margin: 24px 0 16px;

    color: #98a2b3;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

#ndph-auth-system .ndph-divider::before,
#ndph-auth-system .ndph-divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: #eaecf0;
}

#ndph-auth-system .ndph-social-row {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;
}

#ndph-auth-system .ndph-social-btn {

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid var(--border);
    border-radius: 11px;

    color: #344054;
    background: #fff;

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

#ndph-auth-system .ndph-social-btn:hover {

    transform: translateY(-2px);

    border-color: #cbd5e1;

    box-shadow:
        0 8px 20px
        rgba(15,23,42,.08);
}

#ndph-auth-system .ndph-google {

    font-size: 17px;
    font-weight: 900;
    color: #4285f4;
}

#ndph-auth-system .ndph-apple {

    font-size: 14px;
    color: #111827;
}


/* =========================================================
   SWITCH
========================================================= */

#ndph-auth-system .ndph-switch-text {

    margin-top: 23px;

    text-align: center;

    color: #667085;

    font-size: 11px;
}

#ndph-auth-system .ndph-switch-btn {

    padding: 0;
    border: 0;

    color: var(--primary);
    background: transparent;

    font-family: inherit;
    font-size: inherit;
    font-weight: 800;

    cursor: pointer;
}

#ndph-auth-system .ndph-security-note {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin-top: 20px;

    color: #98a2b3;
    font-size: 9px;
}

#ndph-auth-system .ndph-security-note span {

    color: var(--green);
    font-weight: 900;
}


/* =========================================================
   REGISTRATION CARD
========================================================= */

#ndph-auth-system .ndph-register-card {

    width: 100%;
    max-width: 1000px;

    margin: auto;
    overflow: hidden;

    border-radius: 28px;

    background: #fff;

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.35);
}

#ndph-auth-system .ndph-register-header {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 25px 32px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5 50%,
            #7c3aed
        );
}

#ndph-auth-system .ndph-register-brand {

    display: flex;
    align-items: center;
    gap: 12px;
}

#ndph-auth-system .ndph-brand-icon-light {

    width: 48px;
    height: 48px;

    background:
        rgba(255,255,255,.16);

    border:
        1px solid
        rgba(255,255,255,.22);

    box-shadow:
        none;
}

#ndph-auth-system .ndph-register-brand strong {

    display: block;
    font-size: 18px;
}

#ndph-auth-system .ndph-register-brand span {

    display: block;
    margin-top: 3px;

    opacity: .85;
    font-size: 10px;
}

#ndph-auth-system .ndph-back-login {

    min-height: 40px;
    padding: 0 16px;

    border: 1px solid
        rgba(255,255,255,.3);

    border-radius: 10px;

    color: #fff;
    background:
        rgba(255,255,255,.1);

    font-family: inherit;
    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition: .2s ease;
}

#ndph-auth-system .ndph-back-login:hover {

    background:
        rgba(255,255,255,.2);

    transform:
        translateX(-2px);
}


/* =========================================================
   PROGRESS
========================================================= */

#ndph-auth-system .ndph-progress {

    padding: 28px 55px 8px;
}

#ndph-auth-system .ndph-progress-line {

    position: relative;

    height: 4px;

    margin:
        0 10%;

    border-radius: 20px;

    background: #edf0f5;
}

#ndph-auth-system #ndph-progress-fill {

    position: absolute;

    left: 0;
    top: 0;

    width: 0%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--purple)
        );

    transition: .4s ease;
}

#ndph-auth-system .ndph-progress-steps {

    display: flex;
    justify-content: space-between;

    margin-top: -17px;
}

#ndph-auth-system .ndph-progress-step {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    color: #98a2b3;

    font-size: 10px;
    font-weight: 600;
}

#ndph-auth-system .ndph-progress-step span {

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        3px solid #fff;

    border-radius: 50%;

    background: #f1f3f6;

    box-shadow:
        0 0 0 1px #e4e7ec;

    font-size: 12px;
    font-weight: 800;
}

#ndph-auth-system .ndph-progress-step.active {

    color: var(--primary);
}

#ndph-auth-system .ndph-progress-step.active span {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--purple)
        );

    box-shadow:
        0 0 0 5px
        rgba(37,99,235,.1);
}


/* =========================================================
   REGISTER FORM
========================================================= */

#ndph-auth-system #ndph-register-form {

    padding: 24px 45px 38px;
}

#ndph-auth-system .ndph-register-step {

    display: none;

    animation:
        ndphStepIn
        .35s
        ease;
}

#ndph-auth-system .ndph-register-step.active {

    display: block;
}

@keyframes ndphStepIn {

    from {
        opacity: 0;
        transform:
            translateY(12px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

#ndph-auth-system .ndph-step-heading {

    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 25px;
}

#ndph-auth-system .ndph-step-number {

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;

    border-radius: 14px;

    color: var(--primary);
    background: #eff6ff;

    font-size: 12px;
    font-weight: 900;
}

#ndph-auth-system .ndph-step-heading h2 {

    margin: 0 0 3px;
    font-size: 21px;
}

#ndph-auth-system .ndph-step-heading p {

    margin: 0;

    color: var(--muted);

    font-size: 11px;
}

#ndph-auth-system .ndph-register-grid {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 5px 20px;
}

#ndph-auth-system .ndph-full {

    grid-column: 1 / -1;
}


/* =========================================================
   REGISTER INPUT ACTION
========================================================= */

#ndph-auth-system .ndph-input-action {

    display: grid;

    grid-template-columns:
        1fr auto;

    gap: 9px;
}

#ndph-auth-system .ndph-small-btn {

    min-width: 120px;
    height: 52px;

    padding: 0 18px;

    border: 0;
    border-radius: 12px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary2)
        );

    font-family: inherit;
    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 8px 18px
        rgba(37,99,235,.18);

    transition: .2s ease;
}

#ndph-auth-system .ndph-small-btn:hover {

    transform:
        translateY(-2px);
}

#ndph-auth-system .ndph-small-btn:disabled {

    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

#ndph-auth-system .ndph-small-btn.verify {

    background:
        linear-gradient(
            135deg,
            #16a34a,
            #059669
        );
}


/* =========================================================
   OTP
========================================================= */

#ndph-auth-system .ndph-otp-section.hidden {

    display: none;
}

#ndph-auth-system .ndph-otp-message {

    min-height: 17px;

    margin-top: 6px;

    font-size: 10px;
    font-weight: 700;
}

#ndph-auth-system .ndph-otp-message.success {

    color: var(--green);
}

#ndph-auth-system .ndph-otp-message.error {

    color: var(--red);
}

#ndph-auth-system .ndph-resend {

    margin-top: 4px;

    color: #98a2b3;

    font-size: 9px;
}


/* =========================================================
   HINT
========================================================= */

#ndph-auth-system .ndph-hint {

    display: block;

    margin-top: 4px;

    color: #98a2b3;

    font-size: 9px;
}


/* =========================================================
   PASSWORD STRENGTH
========================================================= */

#ndph-auth-system .ndph-strength {

    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 6px;
}

#ndph-auth-system .ndph-strength > div {

    flex: 1;

    height: 5px;

    overflow: hidden;

    border-radius: 20px;

    background: #eaecf0;
}

#ndph-auth-system #ndph-strength-fill {

    display: block;

    width: 0%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #dc2626,
            #f59e0b,
            #16a34a
        );

    transition: .3s ease;
}

#ndph-auth-system #ndph-strength-text {

    min-width: 92px;

    color: #98a2b3;

    font-size: 9px;
}


/* =========================================================
   POLICY
========================================================= */

#ndph-auth-system .ndph-policy {

    padding: 15px;

    border:
        1px solid #e5e7eb;

    border-radius: 13px;

    background: #f8fafc;
}

#ndph-auth-system .ndph-policy label {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;

    color: #475467;

    font-size: 10px;

    line-height: 1.6;

    cursor: pointer;
}

#ndph-auth-system .ndph-policy input {

    position: absolute;

    opacity: 0;

    pointer-events: none;
}

#ndph-auth-system .ndph-policy-box {

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid #cbd5e1;

    border-radius: 6px;

    color: #fff;

    font-size: 12px;
    font-weight: 900;

    background: #fff;
}

#ndph-auth-system .ndph-policy input:checked
+ .ndph-policy-box {

    border-color: var(--primary);

    background: var(--primary);
}

#ndph-auth-system .ndph-policy-error {

    display: block;

    margin-top: 5px;

    color: var(--red);

    font-size: 10px;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

#ndph-auth-system .ndph-action-row {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 22px;
}

#ndph-auth-system .ndph-action-row.right {

    justify-content: flex-end;
}

#ndph-auth-system .ndph-main-btn.small {

    width: auto;

    min-width: 155px;
    min-height: 47px;

    padding: 0 20px;
}

#ndph-auth-system .ndph-secondary-btn {

    min-height: 47px;

    padding: 0 19px;

    border:
        1px solid #e4e7ec;

    border-radius: 12px;

    color: #475467;
    background: #fff;

    font-family: inherit;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition: .2s ease;
}

#ndph-auth-system .ndph-secondary-btn:hover {

    transform:
        translateY(-2px);

    background: #f8fafc;
}

#ndph-auth-system .ndph-submit-actions {

    display: flex;
    align-items: center;
    gap: 9px;
}


/* =========================================================
   REGISTER FOOTER
========================================================= */

#ndph-auth-system .ndph-register-footer {

    padding: 20px 25px;

    text-align: center;

    color: #667085;

    border-top:
        1px solid #eaecf0;

    font-size: 11px;
}


/* =========================================================
   SUCCESS
========================================================= */

#ndph-auth-system .ndph-registration-success {

    display: none;

    padding:
        55px 30px 65px;

    text-align: center;

    animation:
        ndphStepIn
        .45s
        ease;
}

#ndph-auth-system .ndph-registration-success.show {

    display: block;
}

#ndph-auth-system .ndph-success-circle {

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0 auto 18px;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #16a34a,
            #059669
        );

    font-size: 38px;
    font-weight: 900;

    box-shadow:
        0 18px 38px
        rgba(22,163,74,.25);
}

#ndph-auth-system .ndph-success-badge {

    display: inline-block;

    padding: 6px 11px;

    border-radius: 30px;

    color: var(--green);

    background: #ecfdf3;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .1em;
}

#ndph-auth-system .ndph-registration-success h2 {

    margin:
        13px 0 7px;

    font-size: 25px;
}

#ndph-auth-system .ndph-registration-success p {

    max-width: 520px;

    margin:
        0 auto 25px;

    color: #667085;

    font-size: 12px;
}


/* =========================================================
   TOAST
========================================================= */

#ndph-auth-system .ndph-toast {

    position: fixed;

    left: 50%;
    top: 20px;

    z-index: 999999;

    display: flex;

    align-items: center;

    gap: 9px;

    max-width:
        calc(100% - 30px);

    padding:
        12px 18px;

    border-radius: 12px;

    color: #fff;

    background: #101828;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.25);

    font-size: 11px;
    font-weight: 700;

    opacity: 0;
    pointer-events: none;

    transform:
        translate(-50%,-25px);

    transition: .35s ease;
}

#ndph-auth-system .ndph-toast.show {

    opacity: 1;

    transform:
        translate(-50%,0);
}

#ndph-auth-system .ndph-toast.success {

    background: #16a34a;
}

#ndph-auth-system .ndph-toast.error {

    background: #dc2626;
}

#ndph-auth-system .ndph-toast-icon {

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 760px) {

    #ndph-auth-system .ndph-auth-wrapper {

        align-items: flex-start;

        padding:
            20px 10px;
    }

    #ndph-auth-system .ndph-auth-card {

        padding: 28px 20px;

        border-radius: 22px;
    }

    #ndph-auth-system .ndph-register-card {

        border-radius: 20px;
    }

    #ndph-auth-system .ndph-register-header {

        padding:
            20px;
    }

    #ndph-auth-system .ndph-progress {

        padding:
            24px 22px 5px;
    }

    #ndph-auth-system #ndph-register-form {

        padding:
            20px;
    }

    #ndph-auth-system .ndph-register-grid {

        grid-template-columns: 1fr;

        gap: 0;
    }

    #ndph-auth-system .ndph-full {

        grid-column: auto;
    }

    #ndph-auth-system .ndph-input-action {

        grid-template-columns: 1fr;
    }

    #ndph-auth-system .ndph-small-btn {

        width: 100%;
    }
}

@media (max-width: 520px) {

    #ndph-auth-system .ndph-brand {

        margin-bottom: 22px;
    }

    #ndph-auth-system .ndph-brand-icon {

        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    #ndph-auth-system .ndph-brand-text strong {

        font-size: 17px;
    }

    #ndph-auth-system .ndph-auth-heading h1 {

        font-size: 25px;
    }

    #ndph-auth-system .ndph-social-row {

        grid-template-columns: 1fr;
    }

    #ndph-auth-system .ndph-register-header {

        align-items: flex-start;
    }

    #ndph-auth-system .ndph-register-brand strong {

        font-size: 15px;
    }

    #ndph-auth-system .ndph-back-login {

        padding: 0 11px;
    }

    #ndph-auth-system .ndph-action-row {

        flex-direction: column;

        align-items: stretch;
    }

    #ndph-auth-system .ndph-submit-actions {

        width: 100%;
    }

    #ndph-auth-system .ndph-submit-actions > * {

        flex: 1;
    }

    #ndph-auth-system .ndph-main-btn.small {

        width: 100%;
    }

    #ndph-auth-system .ndph-secondary-btn {

        width: 100%;
    }
}

@media (max-width: 380px) {

    #ndph-auth-system .ndph-auth-card {

        padding:
            24px 15px;
    }

    #ndph-auth-system .ndph-register-header {

        padding:
            18px 15px;
    }

    #ndph-auth-system #ndph-register-form {

        padding:
            17px 15px 25px;
    }

    #ndph-auth-system .ndph-progress {

        padding:
            20px 15px 5px;
    }

    #ndph-auth-system .ndph-progress-step small {

        font-size: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    #ndph-auth-system *,
    #ndph-auth-system *::before,
    #ndph-auth-system *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }
}

