/* ==========================================================================
   UltimatePOS — Login page (custom stylesheet)
   Namespaced with `pos-` so it never collides with app.css / bootstrap.
   ========================================================================== */

.pos-auth-page {
    --ink-900: #0B1B33;
    --teal-900: #0B3B2E;
    --teal-700: #10523F;
    --teal-600: #2F6FEE;
    --teal-500: #2ED47A;
    --amber-400: #16A34A;
    --paper-50: #F5F7FB;
    --ink-800: #0C1B33;
    --border: #E2E6EE;

    /*min-height: 100vh;*/
    display: flex;
    /*flex-direction: column;*/
    /*background: var(--paper-50);*/
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /*color: var(--ink-800);*/
    /*box-sizing: border-box;*/
    /*position: relative;*/
    background-image: url("/img/home-bg.png");
    background-size: 100% 100%;
}

.pos-auth-page *,
.pos-auth-page *::before,
.pos-auth-page *::after {
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .pos-auth-page {
        flex-direction: row;
    }
}

/* ---------- Left brand panel ---------- */

.pos-brand {
    position: relative;
    overflow: hidden;
    color: #fff;
    /*background: linear-gradient(135deg, var(--teal-700) 0%, var(--ink-900) 45%, #12275C 100%);*/
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 640px) {
    .pos-brand {
        padding: 2.5rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .pos-brand {
        width: 50%;
        padding: 3rem;
    }
}

@media (max-width: 1024px) {
    .pos-brand {
        display: none;
    }

    .pos-auth-page {
        background-size: cover;
    }

}

/*.pos-brand__dotgrid {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    opacity: .05;*/
/*    background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);*/
/*    background-size: 18px 18px;*/
/*    pointer-events: none;*/
/*}*/

.pos-brand__body {
    position: relative;
    z-index: 1;
}

.pos-brand__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pos-brand__logo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.pos-brand__logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11rem;
    border-radius: .75rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    flex-shrink: 0;
}

.pos-brand__logo-badge img {
    width: 11rem;
    object-fit: contain;
}

.pos-brand__logo-text {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

/* "POS" outline pill next to the logo mark */
.pos-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .3rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(46, 212, 122, .5);
    color: var(--teal-500);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    flex-shrink: 0;
}

.pos-brand__utility {
    display: none;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pos-brand__utility {
        display: flex;
    }
}

.pos-brand__utility a {
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    font-weight: 500;
    text-decoration: none;
}

.pos-brand__utility a:hover {
    color: #fff;
}

/* Eyebrow + decorative progress line */
.pos-eyebrow-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.75rem;
}

.pos-eyebrow {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal-500);
    margin: 0;
    white-space: nowrap;
}

.pos-progress-line {
    position: relative;
    display: block;
    height: 2px;
    width: 5.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
}

.pos-progress-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: var(--teal-600);
    transform: translate(35%, -50%);
    box-shadow: 0 0 0 3px rgba(47, 111, 238, .25);
}

.pos-headline {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.15;
    margin: .75rem 0 0;
    max-width: 22rem;
}

.pos-headline__accent {
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 640px) {
    .pos-headline {
        font-size: 2.15rem;
    }
}

.pos-subtext {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin: 1rem 0 0;
    max-width: 22rem;
    line-height: 1.65;
}

/* -- Feature chips (replaces the old dotted-leader list) -- */

.pos-feature-grid {
    margin: 2rem 0 0;
    display: none;
    flex-direction: column;
    gap: .6rem;
    max-width: 24rem;
    list-style: none;
    padding: 0;
}

@media (min-width: 640px) {
    .pos-feature-grid {
        display: flex;
    }
}

.pos-feature-chip {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .8rem;
    border-radius: .85rem;
    background: rgb(0 12 31 / 66%);
    border: 1px solid rgba(255, 255, 255, .08);
}

.pos-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.1rem;
    width: 2.1rem;
    border-radius: .6rem;
    flex-shrink: 0;
    color: #fff;
}

.pos-feature-icon svg {
    height: 1.1rem;
    width: 1.1rem;
}

.pos-feature-icon--a { background: linear-gradient(135deg, #15803D, #0F766E); }
.pos-feature-icon--b { background: linear-gradient(135deg, #0F766E, #2563EB); }
.pos-feature-icon--c { background: linear-gradient(135deg, #2563EB, #1D4FD8); }

.pos-feature-label {
    flex: 1;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}

.pos-feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.4rem;
    width: 1.4rem;
    border-radius: 50%;
    border: 1.5px solid var(--teal-500);
    color: var(--teal-500);
    flex-shrink: 0;
}

.pos-feature-check svg {
    height: .7rem;
    width: .7rem;
}

.pos-brand__footer {
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
}

.pos-brand__total {
    border-top: 1px dashed rgba(255, 255, 255, .25);
    padding-top: 1rem;
    display: grid;
    justify-content: space-between;
    align-items: baseline;
}

.pos-brand__total-label {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .55);
}

.pos-brand__total-value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Star rating + trust line */
.pos-trust-row {
    margin-top: .85rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.pos-trust-stars {
    display: flex;
    gap: .15rem;
    color: var(--teal-500);
}

.pos-trust-stars svg {
    height: .9rem;
    width: .9rem;
}

.pos-trust-text {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
}

.pos-tear {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px;
    width: 14px;
    background-image: radial-gradient(circle at 7px 10px, rgba(255, 255, 255, .85) 3px, transparent 3.2px);
    background-size: 14px 22px;
    background-repeat: repeat-y;
    opacity: .55;
    z-index: 5;
}

@media (min-width: 1024px) {
    .pos-tear {
        display: block;
    }
}

/* Floating circular chevron badge on the brand/content seam */
.pos-seam-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 96%;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    background: #fff;
    color: var(--teal-600);
    box-shadow: 0 10px 24px -6px rgba(11, 27, 51, .35);
    transform: translate(-50%, -50%);
    z-index: 6;
}

.pos-seam-toggle svg {
    height: 1.4rem;
    width: 1.4rem;
}

@media (min-width: 1024px) {
    .pos-seam-toggle {
        display: flex;
    }
}

/* ---------- Right content panel ---------- */

.pos-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*background: radial-gradient(120% 140% at 100% 0%, #E9FBF1 0%, #ECF3FD 55%, #EDF0FC 100%);*/
}

.pos-topnav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.1rem;
    padding: 1.25rem 1.5rem;
}

@media (min-width: 1024px) {
    .pos-topnav {
        padding: 1.5rem 3rem;
    }
}

.pos-topnav__mobile-utility {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pos-topnav__mobile-utility {
        display: none;
    }
}

.pos-topnav a {
    color: var(--ink-800);
    font-weight: 500;
    font-size: .875rem;
    text-decoration: none;
}

.pos-topnav a:hover {
    color: var(--teal-600);
}

.pos-register-pill {
    background: #ffffff;
    border: 1px solid var(--border);
    height: 2.5rem;
    padding: 0 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
    border-radius: 12px;
}
.language-button{
    margin: 10px;
    background-color: #ffffff;
    padding: 6px 7px;
    border-radius: 8px;
}

.pos-main {
    flex: 1;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem 3rem;
}

.pos-login-wrap {
    width: 100%;
    max-width: 26rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.pos-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .pos-card {
        padding: 2rem;
    }
}

.pos-card--login {
    text-align: center;
    padding-top: 2.5rem;
    box-shadow: 0 24px 48px -20px rgba(11, 27, 51, .25);
}

/* Circular logo badge, overlapping the top of the login card */
.pos-login-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    margin: -4.75rem auto 1rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 26px -8px rgba(47, 111, 238, .35), 0 0 0 6px rgba(255, 255, 255, .6);
    overflow: hidden;
    color: #007fb6;
}

.pos-login-badge img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
}

.pos-login-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pos-card__eyebrow {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin: 0;
}

.pos-card__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink-800);
    margin: .3rem 0 0;
}

.pos-card__desc {
    font-size: .75rem;
    color: #6b7280;
    margin: .35rem 0 0;
    line-height: 1.5;
}

.pos-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.pos-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    padding: .4rem .8rem;
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink-800);
    text-decoration: none;
    background: #fff;
}

.pos-chip:hover {
    border-color: var(--teal-600);
    color: var(--teal-600);
}

.pos-chip--premium {
    background: var(--ink-800);
    border-color: var(--ink-800);
    color: #fff;
}

.pos-chip--premium:hover {
    opacity: .9;
    color: #fff;
}

.pos-chip--docs {
    background: var(--teal-500);
    border-color: var(--teal-500);
    color: #fff;
}

.pos-chip--docs:hover {
    color: #fff;
    opacity: .9;
}

.pos-h1 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink-800);
    margin: 0;
}

.pos-p {
    font-size: .875rem;
    color: #6b7280;
    margin: .25rem 0 0;
}

.pos-form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.pos-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pos-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-800);
    display: block;
    margin-bottom: .3rem;
}

.pos-forgot {
    font-size: .75rem;
    font-weight: 500;
    color: var(--teal-600);
    text-decoration: none;
}

.pos-forgot:hover {
    text-decoration: underline;
}

.pos-input-wrap {
    position: relative;
}

.pos-input-icon {
    position: absolute;
    top: 50%;
    left: .9rem;
    transform: translateY(-50%);
    display: flex;
    color: #9aa3b5;
    pointer-events: none;
}

.pos-input-icon svg {
    height: 1.05rem;
    width: 1.05rem;
}

.pos-input {
    width: 100%;
    margin-top: .4rem;
    border: 1px solid #d1d5db;
    height: 3rem;
    background: transparent;
    border-radius: .6rem;
    padding: 0 .75rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--ink-800);
}

.pos-input--icon {
    padding-left: 2.6rem;
}

.pos-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.pos-input:focus {
    outline: none;
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(47, 111, 238, .15);
}

.pos-eye-btn {
    position: absolute;
    top: 1rem;
    right: .4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem;
    line-height: 0;
}

.pos-checkbox-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .5rem;
    cursor: pointer;
}

.pos-checkbox-row input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--teal-600);
}

.pos-checkbox-row span {
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink-800);
}

.pos-submit {
    width: 100%;
    height: 3rem;
    border: none;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.25rem;
    cursor: pointer;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    transition: opacity .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.pos-submit svg {
    height: 1.1rem;
    width: 1.1rem;
}

.pos-submit:hover {
    opacity: .92;
}

.pos-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 238, .3);
}

/* OR divider + secondary (decorative) fingerprint button */
.pos-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1.1rem 0;
}

.pos-divider::before,
.pos-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.pos-divider span {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: #9aa3b5;
}

.pos-btn-outline {
    width: 100%;
    height: 3rem;
    border-radius: 999px;
    border: 1.5px solid var(--teal-600);
    background: #fff;
    color: var(--teal-600);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .15s ease;
}

.pos-btn-outline svg {
    height: 1.15rem;
    width: 1.15rem;
}

.pos-btn-outline:hover {
    background: rgba(47, 111, 238, .06);
}

.pos-register-cta {
    text-align: center;
    margin-top: 1.25rem;
    font-size: .875rem;
    color: #6b7280;
}

.pos-register-cta a {
    color: inherit;
    text-decoration: none;
}

.pos-register-cta strong {
    color: var(--teal-600);
    font-weight: 500;
}

.pos-register-cta strong:hover {
    text-decoration: underline;
}

.pos-error {
    color: #dc2626;
    font-size: .75rem;
    margin-top: .35rem;
    display: block;
}

/* ==========================================================================
   Register page — wrapper + scoped Bootstrap-form restyling.
   Everything below is scoped under .pos-auth-page so the shared
   business.partials.register_form Blade partial keeps its plain Bootstrap
   look wherever else it's rendered (e.g. an admin "edit business" screen).
   ========================================================================== */

.pos-register-wrap {
    width: 100%;
    max-width: 60rem;
    padding: 2rem 0;
}

.pos-card--wide {
    padding: 1.75rem;
}

@media (min-width: 640px) {
    .pos-card--wide {
        padding: 2rem 2.5rem 2.5rem;
    }
}

.pos-register-head {
    text-align: center;
    margin-bottom: 2rem;
}

.pos-register-head .pos-h1 {
    font-size: 1.35rem;
}

/* -- fieldsets / section headings -- */

.pos-auth-page fieldset {
    border: none;
    margin: 0 0 2rem;
    padding: 0;
    min-width: 0;
}

.pos-auth-page fieldset:last-of-type {
    margin-bottom: 0;
}

.pos-auth-page legend {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-800);
    border-bottom: 1px solid var(--border);
    padding-bottom: .6rem;
    margin-bottom: 0;
    width: 100%;
}

.pos-auth-page h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-800);
    margin: 2rem 0 .75rem;
}

.pos-auth-page h3:first-child {
    margin-top: 0;
}

/* -- form fields -- */

.pos-auth-page .form-group {
    margin-bottom: 0.5rem;
}

.pos-auth-page label {
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink-800);
    margin-bottom: .4rem;
    display: block;
}

.pos-auth-page .form-control {
    width: 100%;
    height: 3rem;
    border: 1px solid #d1d5db;
    border-radius: .6rem;
    padding: 0 .75rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--ink-800);
    background: transparent;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.pos-auth-page .form-control::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.pos-auth-page .form-control:focus {
    outline: none;
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(47, 111, 238, .15);
}

.pos-auth-page select.form-control {
    -webkit-appearance: none;
    appearance: none;
}

.pos-auth-page .select2-container .select2-selection--single {
    height: 3rem !important;
    border-radius: .6rem !important;
    border-color: #d1d5db !important;
    display: flex;
    align-items: center;
}

.pos-auth-page .select2-selection__rendered {
    line-height: 3rem !important;
    padding-left: .75rem !important;
    color: var(--ink-800) !important;
}

.pos-auth-page .select2-selection__arrow {
    height: 3rem !important;
}

.pos-auth-page input[type="file"] {
    width: 100%;
    border: 1px dashed #d1d5db;
    border-radius: .6rem;
    padding: .6rem .75rem;
    font-size: .85rem;
    color: #6b7280;
    background: #fff;
}

.pos-auth-page .input-check-box {
    width: 1rem;
    height: 1rem;
    accent-color: var(--teal-600);
    margin-right: .4rem;
}

.pos-auth-page .terms_condition {
    color: var(--teal-600);
    font-weight: 500;
    text-decoration: none;
    font-size: .85rem;
}

.pos-auth-page .terms_condition:hover {
    text-decoration: underline;
}

.pos-auth-page .text-danger {
    color: #dc2626;
    font-size: .75rem;
}

/* -- jQuery Steps wizard: step nav + Previous/Next/Finish actions -- */

.pos-auth-page .wizard > .steps {
    margin-bottom: 0rem;
}

.pos-auth-page .wizard > .steps ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pos-auth-page .wizard > .steps a,
.pos-auth-page .wizard > .steps a:active,
.pos-auth-page .wizard > .steps a:hover {
    display: block;
    padding: .55rem 1rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--paper-50);
    color: var(--ink-800);
    border: 1px solid var(--border);
}

.pos-auth-page .wizard > .steps .number {
    font-family: 'IBM Plex Mono', monospace;
    margin-right: .35rem;
}

.pos-auth-page .wizard > .steps .current a {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: #fff;
}

.pos-auth-page .wizard > .steps .done a {
    background: #fff;
    border-color: var(--teal-500);
    color: var(--teal-600);
}

.pos-auth-page .wizard > .steps .disabled a {
    opacity: .5;
    pointer-events: none;
}

.pos-auth-page .wizard > .actions {
    margin-top: 2rem;
}

.pos-auth-page .wizard > .actions ul {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pos-auth-page .wizard > .actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.85rem;
    padding: 0 1.5rem;
    border-radius: .75rem;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .15s ease;
}

.pos-auth-page .wizard > .actions li:first-child a {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--ink-800);
}

.pos-auth-page .wizard > .actions li:first-child a:hover {
    border-color: var(--teal-600);
    color: var(--teal-600);
}

.pos-auth-page .wizard > .actions li:not(:first-child) a {
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    border: none;
    color: #fff;
}

.pos-auth-page .wizard > .actions li:not(:first-child) a:hover {
    opacity: .92;
}

.pos-auth-page .wizard > .actions .disabled a {
    opacity: .4;
    pointer-events: none;
}

.wizard > .steps > ul > li {
    width: 32% !important;
}

.pos-auth-page .wizard > .steps .current a {
    width: 100%;
    height: 3rem;
    border: none;
    border-radius: .75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.25rem;
    cursor: pointer;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    transition: opacity .15s ease;
}

.pos-auth-page .wizard > .steps a, .pos-auth-page .wizard > .steps a:active, .pos-auth-page .wizard > .steps a:hover {
    width: 100%;
    height: 3rem;
    border: none;
    border-radius: .75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.25rem;
    cursor: pointer;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    transition: opacity .15s ease;
}

.file-input-new .btn-file{
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

.pos-auth-page .wizard > .steps .done a {
    width: 100%;
    height: 3rem;
    border: none;
    border-radius: .75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.25rem;
    cursor: pointer;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    transition: opacity .15s ease;
}

.wizard>.content>.body label.error {
    margin-left: 0 !important;
}