﻿body.auth-body {
    background:
        radial-gradient(900px 500px at 15% -10%, rgba(15, 118, 110, 0.18), transparent 60%),
        radial-gradient(700px 500px at 90% 0%, rgba(29, 78, 216, 0.18), transparent 60%),
        #f4f1ea;
    min-height: 100vh;
}

.auth-card {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.auth-aside {
    background: linear-gradient(135deg, #0f766e 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 2.75rem;
    min-height: 100%;
    position: relative;
}

.auth-aside::after {
    content: "";
    position: absolute;
    inset: 12% 12% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(18deg);
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-aside h1 {
    margin-top: 1.25rem;
    font-size: 2rem;
    font-weight: 700;
}

.auth-aside p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.auth-list {
    margin-top: 2rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.auth-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.auth-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
}

.auth-form-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.auth-form-subtitle {
    color: #64748b;
    margin-bottom: 1.75rem;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeUp 0.4s ease;
}

.message.success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #166534;
}

.message.error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.message.info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.form-control.valid {
    border-color: #16a34a;
    box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.15);
}

.form-control.invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15);
}

.shake {
    animation: shake 0.3s ease-in-out;
}

.code-inputs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.code-input {
    text-align: center;
    padding: 0.7rem 0;
    font-size: 1.2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.code-input.filled {
    border-color: #0f766e;
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.15);
}

.logo-upload {
    border: 2px dashed #cbd5f5;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.logo-upload.dragover {
    border-color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
}

.logo-preview {
    max-width: 140px;
    border-radius: 14px;
    display: none;
    margin-top: 1rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.char-count {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.35rem;
}

.char-count.warning {
    color: #f59e0b;
}

.char-count.error {
    color: #dc2626;
}

.checkbox-group {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.checkbox-label {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkbox-label.checked {
    border-color: #0f766e;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.15);
}

.checkbox-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(15, 118, 110, 0.12);
    color: #0f766e;
    font-weight: 700;
    margin-right: 0.75rem;
}

.password-strength {
    height: 6px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
    margin-top: 0.5rem;
}

.strength-bar {
    height: 100%;
    width: 0%;
    background: #94a3b8;
    transition: width 0.2s ease, background 0.2s ease;
}

.strength-weak {
    width: 33%;
    background: #dc2626;
}

.strength-medium {
    width: 66%;
    background: #f59e0b;
}

.strength-strong {
    width: 100%;
    background: #16a34a;
}

.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top-color: #ffffff;
    border-radius: 999px;
    margin-left: 0.5rem;
    animation: spin 0.8s linear infinite;
}

#timer.expired {
    color: #dc2626;
    font-weight: 600;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .auth-aside {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .code-inputs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.register-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(200px, 65vw);
    max-width: 100%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-logo:hover,
.register-logo:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.register-logo:focus-visible {
    outline: 3px solid rgba(23, 104, 229, 0.25);
    outline-offset: 4px;
}

.register-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 112px;
    object-fit: contain;
    border-radius: 16px;
}


/* Registration logo sizing */
.registration-page .registration-logo-frame {
  width: min(210px, 70vw);
  height: 76px;
  max-width: 100%;
  margin: 0 auto 1.35rem;
  overflow: hidden;
  border-radius: 13px;
}

.registration-page .registration-logo-frame img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  border-radius: 13px;
}

@media (max-width: 575px) {
  .registration-page .registration-logo-frame {
    width: min(184px, 66vw);
    height: 66px;
    margin-bottom: 1.1rem;
  }
}

/* Registration heading */
.registration-heading {
    margin: 0 0 1.6rem;
    text-align: left;
}

.registration-heading .auth-form-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.65rem, 3vw, 1.9rem);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.registration-heading .auth-form-subtitle {
    margin: .55rem 0 0;
    color: #64748b;
    font-size: .95rem;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .registration-heading {
        margin-bottom: 1.35rem;
    }

    .registration-heading .auth-form-title {
        font-size: 1.55rem;
    }

    .registration-heading .auth-form-subtitle {
        font-size: .9rem;
    }
}


/* Validation page logo */
.validation-page .validation-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(190px, 100%);
    height: 68px;
    margin: 0 0 1.5rem;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.validation-page .validation-logo-frame .cellaro-logo-aside {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .validation-page .validation-logo-frame {
        width: 170px;
        height: 61px;
        margin-bottom: 1.15rem;
    }
}

@media (max-width: 575px) {
    .validation-page .validation-logo-frame {
        width: 154px;
        height: 55px;
    }
}


/* Compact validation content */
.validation-page .auth-aside h1 {
    margin-top: .85rem;
    font-size: 1.7rem;
}

.validation-page .auth-aside p {
    max-width: 250px;
    margin-top: .55rem;
    line-height: 1.5;
}

.validation-page .auth-form-title {
    margin-bottom: .55rem;
}

.validation-recipient {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: .9rem;
}

.validation-recipient strong {
    color: #334155;
    font-weight: 700;
}

.validation-page #timer {
    margin-top: 1rem !important;
    font-size: .82rem;
}

.validation-footer {
    margin-top: 1.35rem;
    text-align: center;
}

.validation-footer a {
    color: #64748b;
    font-size: .88rem;
    font-weight: 650;
    text-decoration: none;
}

.validation-footer a:hover {
    color: #1768e5;
}


/* Neutral validation panel */
.validation-page .auth-aside {
    background: #f8fafc !important;
    color: #0f172a !important;
    border-right: 1px solid #e2e8f0;
}

.validation-page .auth-aside::after {
    display: none !important;
}

.validation-page .auth-aside h1 {
    color: #0f172a !important;
}

.validation-page .auth-aside p {
    color: #64748b !important;
}

.validation-page .validation-logo-frame {
    border-color: #e2e8f0;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}

@media (max-width: 991px) {
    .validation-page .auth-aside {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }
}


/* Verification code fields sizing */
.validation-page .code-inputs {
    display: grid;
    grid-template-columns: repeat(6, 48px);
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 338px;
    margin: 0 auto;
}

.validation-page .code-input {
    display: block;
    width: 48px !important;
    min-width: 0;
    height: 54px;
    padding: 0 !important;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    background: #fff;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 750;
    line-height: 54px;
    text-align: center;
    box-sizing: border-box;
}

.validation-page .code-input:focus {
    outline: none;
    border-color: #1768e5;
    box-shadow: 0 0 0 3px rgba(23, 104, 229, .13);
}

@media (max-width: 420px) {
    .validation-page .code-inputs {
        grid-template-columns: repeat(6, 40px);
        gap: 7px;
        max-width: 275px;
    }

    .validation-page .code-input {
        width: 40px !important;
        height: 48px;
        border-radius: 9px;
        font-size: 1.1rem;
        line-height: 48px;
    }
}


/* Validation form heading */
.validation-form-heading {
    margin-bottom: 1.6rem;
}

.validation-step {
    display: block;
    margin-bottom: .55rem;
    color: #1768e5;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.validation-page .validation-form-heading .auth-form-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.validation-form-heading > p {
    margin: .65rem 0 .55rem;
    color: #64748b;
    font-size: .9rem;
}

.validation-page .validation-recipient {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    max-width: 100%;
    margin: 0;
    padding: .55rem .75rem;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #f8fbff;
    color: #334155;
    font-size: .88rem;
}

.validation-recipient-icon {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 7px;
    background: #eaf2ff;
    color: #1768e5;
    font-weight: 800;
}

.validation-page .validation-recipient strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #1e293b;
    font-weight: 700;
}

.validation-code-label {
    margin-bottom: .75rem;
    color: #475569 !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
}

@media (max-width: 575px) {
    .validation-form-heading {
        margin-bottom: 1.35rem;
    }

    .validation-page .validation-form-heading .auth-form-title {
        font-size: 1.55rem;
    }

    .validation-page .validation-recipient {
        display: flex;
        width: 100%;
    }
}


/* Password eye - page fallback */
.password-field { position: relative !important; width: 100% !important; }
.password-field > .form-control { width: 100% !important; padding-right: 3.25rem !important; }
.password-field > .password-toggle {
    position: absolute !important;
    top: 50% !important;
    right: 8px !important;
    z-index: 5 !important;
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: transparent !important;
    color: #64748b !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
}
.password-field > .password-toggle:hover,
.password-field > .password-toggle:focus-visible,
.password-field > .password-toggle.is-visible { background: #eff6ff !important; color: #1768e5 !important; }
.password-field > .password-toggle svg { display: block !important; width: 21px !important; height: 21px !important; fill: none !important; stroke: currentColor !important; stroke-width: 1.9 !important; }


/* Enterprise creation page */
.enterprise-create-page {
    min-height: 100vh;
    padding: 32px 16px;
    background:
        radial-gradient(circle at 8% 5%, rgba(45, 212, 191, .18), transparent 28%),
        radial-gradient(circle at 94% 12%, rgba(96, 165, 250, .22), transparent 30%),
        linear-gradient(145deg, #f8fbff 0%, #f4f7fb 50%, #f8fafc 100%);
    position: relative;
    overflow-x: hidden;
}
.enterprise-create-page::before,
.enterprise-create-page::after {
    content: "";
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}
.enterprise-create-page::before {
    width: 260px; height: 260px; left: -100px; bottom: 8%;
    background: rgba(45, 212, 191, .08);
}
.enterprise-create-page::after {
    width: 320px; height: 320px; right: -150px; top: 30%;
    border: 50px solid rgba(37, 99, 235, .05);
}
.enterprise-create-page .container { max-width: 960px; position: relative; z-index: 1; }
.enterprise-create-page .min-vh-100 { min-height: calc(100vh - 64px) !important; }
.enterprise-create-page .auth-card {
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, .78) !important;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 28px 75px rgba(15, 23, 42, .11), 0 2px 8px rgba(15, 23, 42, .04);
    backdrop-filter: blur(14px);
}
.enterprise-create-page .auth-card::before {
    content: ""; display: block; height: 5px;
    background: linear-gradient(90deg, #14b8a6, #2563eb 55%, #38bdf8);
}
.enterprise-create-page .card-body { padding: 2.6rem 3rem 2.2rem !important; }
.enterprise-form-header { display: flex; align-items: center; gap: 1.8rem; margin-bottom: 1.35rem; }
.enterprise-logo-frame {
    display: flex; flex: 0 0 162px; width: 162px; height: 62px; overflow: hidden;
    border: 1px solid #e2e8f0; border-radius: 17px; background: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .07);
}
.enterprise-logo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.enterprise-heading { min-width: 0; }
.enterprise-eyebrow {
    display: inline-block; margin-bottom: .45rem; color: #0f766e;
    font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
}
.enterprise-form-header .auth-form-title {
    margin: 0; color: #0f172a; font-size: clamp(1.8rem, 4vw, 2.45rem);
    font-weight: 850; line-height: 1.08; letter-spacing: -.045em;
}
.enterprise-form-header .auth-form-subtitle { margin: .55rem 0 0; color: #64748b; font-size: .96rem; line-height: 1.55; }
.enterprise-reassurance {
    display: flex; flex-wrap: wrap; gap: .65rem 1.25rem; margin: 0 0 2.2rem;
    padding: .85rem 1rem; border: 1px solid #dbeafe; border-radius: 14px;
    background: linear-gradient(90deg, #f0fdfa, #eff6ff); color: #475569; font-size: .78rem; font-weight: 650;
}
.enterprise-reassurance span { display: inline-flex; align-items: center; gap: .4rem; }
.enterprise-reassurance i {
    display: inline-grid; place-items: center; width: 19px; height: 19px;
    border-radius: 50%; background: #fff; color: #0f766e; font-style: normal; box-shadow: 0 2px 6px rgba(15, 118, 110, .12);
}
.form-section-heading { display: flex; align-items: center; gap: .75rem; margin: 0 0 1rem; }
.form-section-heading > span {
    display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px;
    background: #0f172a; color: #fff; font-size: .72rem; font-weight: 800;
}
.form-section-heading strong, .form-section-heading small { display: block; }
.form-section-heading strong { color: #172033; font-size: .98rem; }
.form-section-heading small { margin-top: .08rem; color: #94a3b8; font-size: .76rem; }
.enterprise-create-page .form-label { margin-bottom: .48rem; color: #334155; font-size: .8rem; font-weight: 750; }
.enterprise-create-page .form-control {
    min-height: 50px; padding: .76rem .95rem; border: 1px solid #dbe3ee;
    border-radius: 13px !important; background: #fbfdff; color: #0f172a;
    transition: border-color .2s, box-shadow .2s, background .2s, transform .2s;
}
.enterprise-create-page .form-control:hover { border-color: #b9c8dc; background: #fff; }
.enterprise-create-page .form-control:focus {
    border-color: #3b82f6; background: #fff; box-shadow: 0 0 0 4px rgba(59, 130, 246, .11); transform: translateY(-1px);
}
.enterprise-create-page textarea.form-control { min-height: 92px; resize: vertical; }
.enterprise-create-page .char-count { color: #94a3b8; font-size: .68rem; }
.enterprise-create-page .logo-upload {
    min-height: 118px; border: 1.5px dashed #a8bed7; border-radius: 15px;
    background: linear-gradient(145deg, #f8fbff, #f0fdfa); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.enterprise-create-page .logo-upload:hover { border-color: #2563eb; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 99, 235, .09); }
.enterprise-activity-section { margin-top: 1.7rem; padding-top: 1.7rem; border-top: 1px solid #edf1f6; }
.enterprise-create-page .checkbox-group {
    height: 100%; overflow: hidden; border: 1px solid #dfe6ef; border-radius: 16px;
    background: #fff; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.enterprise-create-page .checkbox-group:hover { border-color: #7dd3c7; box-shadow: 0 12px 28px rgba(15, 118, 110, .10); transform: translateY(-3px); }
.enterprise-create-page .checkbox-label { min-height: 112px; padding: 1rem; cursor: pointer; }
.enterprise-create-page .checkbox-icon {
    display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px;
    border-radius: 12px; background: #eef6ff; color: #2563eb; font-weight: 850;
}
.enterprise-create-page .checkbox-group input:checked + .checkbox-label { background: linear-gradient(145deg, #f0fdfa, #eff6ff); }
.enterprise-create-page .checkbox-group input:checked + .checkbox-label .checkbox-icon { background: #0f766e; color: #fff; }
.enterprise-create-page form > .d-flex { justify-content: flex-end; padding-top: .75rem; }
.enterprise-create-page form > .d-flex .btn { min-height: 49px; padding-inline: 1.35rem; border-radius: 13px; font-weight: 750; }
.enterprise-create-page #submitBtn {
    border: 0; background: linear-gradient(110deg, #0f766e, #2563eb 68%, #0ea5e9);
    box-shadow: 0 12px 24px rgba(37, 99, 235, .2); transition: transform .2s, box-shadow .2s;
}
.enterprise-create-page #submitBtn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(37, 99, 235, .27); }
@media (max-width: 767px) {
    .enterprise-create-page { padding: 12px 7px; }
    .enterprise-create-page .container { padding-inline: 0; }
    .enterprise-create-page .card-body { padding: 1.65rem 1.15rem 1.4rem !important; }
    .enterprise-create-page .auth-card { border-radius: 22px; }
    .enterprise-form-header { display: block; margin-bottom: 1.15rem; }
    .enterprise-logo-frame { width: 145px; height: 55px; margin-bottom: 1.25rem; }
    .enterprise-form-header .auth-form-title { font-size: 1.85rem; }
    .enterprise-reassurance { margin-bottom: 1.7rem; gap: .55rem; }
    .enterprise-reassurance span { width: 100%; }
    .enterprise-create-page form > .d-flex { flex-direction: column; }
    .enterprise-create-page form > .d-flex .btn { width: 100%; }
}

/* Compact activity selector */
.enterprise-create-page .vente-types {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.enterprise-create-page .vente-types > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
}
.enterprise-create-page .checkbox-group {
    display: block !important;
    position: relative;
    min-width: 0;
    height: auto !important;
    border: 0;
    overflow: visible;
}
.enterprise-create-page .checkbox-group > input[type="checkbox"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none;
}
.enterprise-create-page .checkbox-label {
    position: relative;
    width: 100%;
    min-height: 96px;
    gap: .1rem;
    margin: 0;
    padding: 1rem 2.5rem 1rem 1rem;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    align-items: center !important;
}
.enterprise-create-page .checkbox-label::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    background: #fff;
    transition: .2s ease;
}
.enterprise-create-page .checkbox-label.checked,
.enterprise-create-page .checkbox-group input:checked + .checkbox-label {
    border-color: #14a394;
    background: linear-gradient(145deg, #f0fdfa, #f7fbff);
    box-shadow: 0 10px 24px rgba(15, 118, 110, .11);
}
.enterprise-create-page .checkbox-label.checked::after,
.enterprise-create-page .checkbox-group input:checked + .checkbox-label::after {
    content: "\2713";
    display: grid;
    place-items: center;
    border-color: #0f766e;
    background: #0f766e;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.enterprise-create-page .checkbox-label strong {
    color: #162033;
    font-size: .9rem;
    line-height: 1.25;
}
.enterprise-create-page .checkbox-label small {
    margin-top: .28rem;
    font-size: .75rem;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .enterprise-create-page .vente-types { grid-template-columns: 1fr; }
    .enterprise-create-page .checkbox-label { min-height: 82px; }
}
