body.login-editorial {
    /* design tokens */
    --le-ink: #2b3138;
    --le-ink-muted: #5b636d;
    --le-body-muted: #6b7480;
    --le-label-muted: #8b949e;
    --le-faint: #9aa4b0;
    --le-hairline: #dfe4e9;
    --le-hairline-2: #e2e7ec;
    --le-surface: #f4f6f8;
    --le-surface-2: #fafbfc;
    --le-disabled: #c3c9cf;
    --le-accent: #4a8dc4;
    --le-gold: #e8b23a;
    --le-green: #5f7357;
    --le-panel: #1d2b26;
    --le-scrim: linear-gradient(105deg, #12201c 8%, rgba(18, 32, 28, 0.55) 62%, rgba(18, 32, 28, 0.18) 100%);
    --le-err-bg: #fdf1ef;
    --le-err-text: #a63b31;
    --le-ok-bg: #f2f7f2;
    --le-ok-text: #3c4a3a;

    margin: 0;
    background: #fff !important;
    background-image: none !important;
    color: var(--le-ink);
    font-family: 'Open Sans', sans-serif;
}

/* Per-application theming ---------------------------------------------------
   Each app keeps its own identity but inside the shared editorial frame. */
body.login-editorial.GeOC-login {
    --le-accent: #4a76b8;
    --le-panel: #1e2d4a;
}

body.login-editorial.QAP-login {
    --le-accent: #5aa246;
    --le-panel: #2c471f;
}

body.login-editorial.INDMS-login {
    --le-accent: #2a9d5b;
    --le-panel: #0a3d24;
}

body.login-editorial.ToC-login {
    --le-accent: #0187ca;
    --le-panel: #0b3a52;
}

body.login-editorial.SHL-login {
    --le-accent: #6f8a63;
    --le-panel: #3a4634;
}

body.login-editorial a {
    color: var(--le-accent);
    text-decoration: none;
}

body.login-editorial a:hover {
    color: #356d9e;
    text-decoration: underline;
}

body.login-editorial *:focus {
    outline: none;
}

/* ---- Shell: two fixed-height columns side by side ------------------------ */
.le-shell {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

/* ---- Left editorial panel ------------------------------------------------ */
.le-panel {
    position: relative;
    flex: 0 0 58%;
    max-width: 58%;
    height: 100vh;
    background: var(--le-panel);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* ---- Right column: positioning context for the About tab; holds the form -- */
.le-auth {
    position: relative;
    flex: 1 1 42%;
    min-width: 0;
    height: 100vh;
}

.le-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.82;
}

/* Apps that brand with a logo watermark rather than a photo. */
.le-panel.le-panel--logo .le-photo {
    opacity: 0.82;
    background-size: 46%;
    background-repeat: no-repeat;
    background-position: 82% center;
}

.le-scrim {
    position: absolute;
    inset: 0;
    background: var(--le-scrim);
}

.le-stripe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.le-stripe > span {
    flex: 1;
}

.le-stripe .s1 {
    background: #4a8dc4;
}

.le-stripe .s2 {
    background: #c0453a;
}

.le-stripe .s3 {
    background: #e8b23a;
}

.le-stripe .s4 {
    background: #c9976a;
}

.le-stripe .s5 {
    background: #5f7357;
}

.le-panel-content {
    position: relative;
    z-index: 3;
    flex: 1;
    align-self: stretch;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 58px 64px 15px 88px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.le-logo {
    max-width: 190px;
}

.le-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* full-colour MEL mark reads fine, others ship white/knockout marks already */

.le-editorial {
    max-width: 520px;
    padding: 48px 0;
}

.le-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--le-gold);
    margin-bottom: 18px;
}

.le-editorial h1 {
    margin: 0 0 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 27px;
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.le-editorial p {
    margin: 0 0 26px;
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 440px;
}

.le-story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff !important;
    border-bottom: 2px solid var(--le-gold);
    padding-bottom: 5px;
}

.le-story-link:hover {
    color: var(--le-gold) !important;
    text-decoration: none;
}

.le-supported {
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.le-supported > span {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.le-partners {
    flex: 1;
    min-width: 0;
    height: 70px;
    opacity: 0.9;
}

/* Partner logo carousel (tinycarousel), relocated into the panel.
   tinycarousel animates .overview { left }, so the overview MUST be positioned
   and the slides float in a row of fixed-width cells — a flex overview stops
   the animation. These selectors are more specific than (and load after)
   login-soft.css's #slider1 rules, so they win. */
.le-partners #slider1 {
    position: relative;
    width: 100%;
    height: 70px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.le-partners #slider1 .viewport {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.le-partners #slider1 .overview {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

.le-partners #slider1 .overview li {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 70px;
    margin: 0 12px 0 0;
    padding: 0;
}

.le-partners #slider1 .overview li img {
    max-height: 70px;
    max-width: 126px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* ---- Right form column: fills .le-auth, scrolls its own content ---------- */
.le-forms {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 64px 66px;
    display: flex;
    flex-direction: column;
    /* flex-start + margin:auto on the card centres it when there's room but
       keeps the top reachable (scrollable) when content is taller than the
       viewport — plain justify-content:center clips the top in that case. */
    justify-content: flex-start;
}

/* neutralise bootstrap panel chrome — the card is just a flow container now */
.le-forms .panel,
.le-forms .panel-info,
.le-forms .panel-body {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.le-forms > .panel {
    margin: auto 0 !important;
    width: 100%;
}

.le-forms .panel-heading {
    display: none !important;
}

.le-forms .panel-title {
    display: none !important;
}

/* ---- Step header (eyebrow / heading / blurb) ----------------------------- */
.le-step-head {
    margin-bottom: 30px;
}

.le-step-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--le-faint);
    margin-bottom: 14px;
}

.le-step-title {
    margin: 0 0 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--le-ink);
    line-height: 1.1;
}

.le-step-blurb {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--le-body-muted);
}

/* ---- Shared controls ----------------------------------------------------- */
.le-forms .le-label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--le-label-muted);
    margin-bottom: 8px;
}

/* underline text inputs — override bootstrap .form-control hard */
.le-forms .le-field .form-control {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-bottom: 2px solid var(--le-ink);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-family: inherit;
    font-size: 16px;
    height: auto;
    padding: 10px 2px 12px;
    color: var(--le-ink);
    transition: border-color .12s ease;
}

.le-forms .le-field .form-control:focus {
    border-bottom-color: var(--le-accent);
    box-shadow: none;
}

.le-forms .le-field {
    margin-bottom: 30px;
}

/* primary / secondary buttons — override bootstrap .btn hard */
.le-forms .le-btn,
.le-forms .btn.le-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 0;
    background: var(--le-accent);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background .12s ease;
}

.le-forms .le-btn:hover,
.le-forms .btn.le-btn:hover {
    background: var(--le-green);
    color: #fff;
}

.le-forms .le-btn:disabled,
.le-forms .btn.le-btn[disabled] {
    background: var(--le-disabled);
    cursor: not-allowed;
}

.le-forms .le-btn-secondary,
.le-forms .btn.le-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    margin-top: 12px;
    border: 1px solid var(--le-hairline);
    border-radius: 0;
    background: #fff;
    color: var(--le-ink-muted);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .12s ease, color .12s ease;
}

.le-forms .le-btn-secondary:hover,
.le-forms .btn.le-btn-secondary:hover {
    border-color: var(--le-ink);
    color: var(--le-ink);
    text-decoration: none;
}

/* identity chip */
.le-forms .identity-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    background: var(--le-surface);
    color: var(--le-ink);
    margin-bottom: 28px;
}

.le-forms .identity-chip .fa {
    color: var(--le-accent);
}

.le-forms .identity-chip .identity-email {
    flex: 1;
    min-width: 0;
    font-size: 13.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.le-forms .identity-chip .identity-change {
    float: none;
    flex: 0 0 auto;
    font-size: 12.5px;
    font-weight: 600;
}

/* password row: show-password + forgot */
.le-pw-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 14px 0 26px;
    font-size: 13.5px;
}

.le-pw-row .checkbox {
    margin: 0;
}

.le-pw-row label {
    color: var(--le-body-muted);
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}

/* Native, squared checkboxes on the auth steps (uniform is skipped for these,
   so they stay small and on-brand instead of the sprite widget). */
.le-pw-row input[type="checkbox"],
#login-remember {
    width: 15px;
    height: 15px;
    margin: 0 8px 0 0;
    vertical-align: -2px;
    accent-color: var(--le-accent);
    cursor: pointer;
}

/* reCAPTCHA box — keep the widget, frame it to the design metrics */
.le-forms .captcha-parent {
    min-height: 120px;
}

.le-forms .captcha-parent .recaptcha_error_container {
    color: var(--le-err-text);
    font-size: 12.5px;
    margin-top: 6px;
}

.le-forms .captcha-parent.has-error {
    border-color: #c0453a;
}

/* banners */
.le-forms .alert {
    border-radius: 0;
    border: 0;
    font-size: 13.5px;
    line-height: 1.5;
    padding: 12px 16px;
    margin-bottom: 24px;
}

.le-forms .alert-danger {
    background: var(--le-err-bg);
    border-left: 3px solid #c0453a;
    color: var(--le-err-text);
}

.le-forms .alert-success {
    background: var(--le-ok-bg);
    border-left: 3px solid var(--le-green);
    color: var(--le-ok-text);
}

.le-forms .alert-warning {
    background: #fff8ec;
    border-left: 3px solid var(--le-gold);
    color: #8a6d1f;
    width: auto;
}

.le-forms .alert .close {
    color: inherit;
    opacity: .5;
}

/* ---- OTP 6-box grid ------------------------------------------------------ */
.le-otp {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 9px;
    margin-bottom: 12px;
}

.le-otp input {
    width: 100%;
    box-sizing: border-box;
    height: 58px;
    border: 1px solid var(--le-hairline);
    border-radius: 0;
    background: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--le-ink);
    padding: 0;
}

.le-otp input:focus {
    border-color: var(--le-accent);
}

.le-otp input.filled {
    border-color: var(--le-ink);
}

.le-otp-help {
    font-size: 12.5px;
    color: var(--le-label-muted);
    margin-bottom: 24px;
}

.le-mfa-support {
    margin: 18px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--le-label-muted);
    text-align: center;
}

/* ---- Authenticator (TOTP) enrollment page -------------------------------- */
.le-enroll-steps {
    margin: 0 0 22px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--le-body-muted);
}

.le-qr {
    text-align: center;
    margin-bottom: 24px;
}

.le-qr img {
    width: 168px;
    height: 168px;
    border: 1px solid var(--le-hairline);
    padding: 8px;
    background: #fff;
}

.le-key-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.le-key-input {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    height: 46px;
    border: 1px solid var(--le-hairline);
    border-radius: 0;
    background: var(--le-surface);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--le-ink);
    padding: 0 14px;
}

.le-forms .le-btn-secondary.le-key-copy {
    flex: 0 0 auto;
    width: auto;
    margin-top: 0;
    padding: 0 18px;
    height: 46px;
}

.le-code-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 58px;
    margin-top: 4px;
    border: 1px solid var(--le-hairline);
    border-radius: 0;
    background: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--le-ink);
    padding: 0;
}

.le-code-input:focus {
    border-color: var(--le-accent);
    outline: none;
}

/* Password field with an inline show/hide eye (reset page). */
.le-pw-input {
    position: relative;
}

.le-pw-input .form-control {
    padding-right: 34px;
}

.le-pw-eye {
    position: absolute;
    right: 2px;
    top: 8px;
    color: var(--le-label-muted);
    cursor: pointer;
    padding: 4px;
}

.le-pw-eye:hover {
    color: var(--le-ink);
}

/* resend button variant */
.le-forms .le-resend {
    color: var(--le-accent);
    font-weight: 600;
}

.le-forms .le-resend[disabled] {
    color: #a6aeb7;
}

/* ---- SSO handoff card ---------------------------------------------------- */
.le-redirect-card {
    border: 1px solid var(--le-hairline-2);
    padding: 28px 26px;
    text-align: center;
}

.le-redirect-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.le-sso-brands .le-ms-mark {
    flex: 0 0 auto;
}

.le-sso-brands .le-ms-mark svg {
    display: block;
}

.le-sso-brands .le-ms-word {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #5b636d;
    letter-spacing: .01em;
}

.le-sso-brands .fa {
    color: var(--le-disabled);
}

.le-sso-brands .le-mel-word {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--le-ink);
}

.le-sso-card p {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--le-ink-muted);
}

.le-redirect-count {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--le-faint);
    margin-top: 16px;
}

/* ---- Footer links / legal on the right column ---------------------------- */
.le-secondary {
    display: flex;
    gap: 22px;
    margin-top: 30px;
    font-size: 13.5px;
}

.le-legal {
    margin-top: 40px;
    font-size: 12px;
    color: var(--le-faint);
    line-height: 1.6;
}

/* Inline informational footnote under a step (e.g. the SSO hint on the email
   step, or the MFA "no access to your code" line). */
.le-footnote {
    margin: 22px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--le-label-muted);
}

.le-footnote .fa {
    color: var(--le-accent);
}

/* ---- Register form: align it to the editorial column --------------------- */
.le-forms #registerForm {
    text-align: left;
}

.le-forms #registerForm .form-body {
    padding: 0;
}

.le-forms #registerForm .control-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--le-label-muted);
    margin-bottom: 6px;
}

.le-forms #registerForm .control-label .required {
    color: #c0453a;
}

/* boxed, squared inputs consistent with the editorial hairlines */
.le-forms #registerForm .form-control,
.le-forms #registerForm .selectize-input,
.le-forms #registerForm .select2-container--bootstrap .select2-selection {
    border-radius: 0;
    box-shadow: none;
    min-height: 42px;
    font-size: 14px;
    line-height: 2;
    color: var(--le-ink);
}

.le-forms #registerForm .form-control:focus {
    border-color: var(--le-accent);
    box-shadow: none;
}

.le-forms #registerForm textarea.form-control {
    min-height: 78px;
}

.le-forms #registerForm .iti--separate-dial-code .iti__selected-flag {
    border-radius: 0 !important;
}

/* buttons: a clean, equal two-up row that matches the editorial buttons */
.le-forms #registerForm .form-group-btns {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.le-forms #registerForm .form-group-btns > .col-md-6 {
    flex: 1;
    width: auto;
    padding: 0 !important;
    margin: 0;
}

.le-forms #registerForm .form-group-btns .btn {
    margin: 0 !important;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.le-forms #registerForm .form-group-btns .register_user_form_submit {
    background: var(--le-accent);
    color: #fff;
    border: 0;
}

.le-forms #registerForm .form-group-btns .register_user_form_submit:hover {
    background: var(--le-green);
    color: #fff;
}

.le-forms #registerForm .form-group-btns .back-btn {
    background: #fff;
    color: var(--le-ink-muted);
    border: 1px solid var(--le-hairline);
}

.le-forms #registerForm .form-group-btns .back-btn:hover {
    border-color: var(--le-ink);
    color: var(--le-ink);
}

/* Step visibility for the single email→password form (mirrors JS classes).
   Both rules keyed only on .email-step so the two steps gate consistently
   whether or not the .ms-flow (SSO) class is present. */
#loginform.email-step .password-step {
    display: none !important;
}

#loginform:not(.email-step) .email-step-only {
    display: none !important;
}

/* ---- About section -------------------------------------------------------
   A [tab][content] unit absolutely anchored to the LEFT edge of the form
   column (.le-auth) via right:100%. Closed, only the tab shows at that edge;
   opening (.is-open) grows the content to the left, and because the unit is
   right-pinned the whole thing — tab included — slides leftward. Pure CSS,
   no JS positioning. The `!important`s neutralise legacy inline sizing that
   login.js still writes for the old layout. */
#about_mel.le-about {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    width: auto;
    height: auto !important;
    max-width: none !important;
    z-index: 50;
}

/* the tab — first child, so it rides on the section's outer (left) edge */
.le-about-toggle {
    flex: 0 0 34px;
    align-self: center;
    height: 64px !important;
    top: auto !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--le-ink);
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .15);
}

.le-about-toggle span {
    color: #fff;
    transition: transform .3s ease;
}

#about_mel.is-open .le-about-toggle span {
    transform: rotate(180deg);
}

/* the sliding content panel */
.le-about-content {
    width: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--le-panel);
    color: #fff;
    padding: 0;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .28);
    transition: width 1s ease, padding .4s ease;
}

#about_mel.is-open .le-about-content {
    width: 600px;
    padding: 34px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.le-about-content p {
    color: #fff !important;
    font-size: 13.5px;
    line-height: 1.7;
    height: auto;
    overflow-y: auto;
}

.le-about-content p:first-child {
    margin-top: 0;
}

/* ---- Responsive: stack under ~992px -------------------------------------- */
@media (max-width: 991px) {
    .le-shell {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .le-panel {
        flex: none;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 300px;
    }

    .le-auth {
        flex: none;
        width: 100%;
        height: auto;
    }

    .le-panel-content {
        min-height: 0;
        padding: 40px 28px 28px 40px;
    }

    .le-editorial {
        padding: 26px 0;
    }

    .le-editorial h1 {
        font-size: 32px;
    }

    .le-forms {
        height: auto;
        overflow: visible;
        padding: 40px 26px 60px;
    }

    /* on narrow screens the slider */
    /*.le-supported {*/
    /*    display: none;*/
    /*}*/
    /* the left-hanging About tab has nowhere to go once the columns stack */
    #about_mel.le-about {
        position: relative;
        top: unset;
        right: unset;
        transform: unset;
    }

    #about_mel.le-about .le-about-toggle {
        position: absolute;
        top: 0 !important;
        left: 50%;
        transform: translateX(-50%) translateY(-25%) rotate(270deg);
    }

    #about_mel.le-about .le-about-toggle > span {
        margin-bottom: 4px;
    }

    #about_mel.le-about.is-open .le-about-toggle > span {
        margin-bottom: 2px;
    }

    #about_mel .le-about-content {
        max-height: 0;
        width: 100%;
        transition: max-height 1s ease, padding .4s ease;
        padding: 0 28px;
    }

    #about_mel.is-open .le-about-content {
        width: 100%;
        max-height: 400px;
    }

    #about_mel.is-open .le-about-content p {
        height: 100%;
    }
}

@media (max-width: 560px) {
    .le-panel-content {
        padding: 32px 22px 22px 34px;
    }

    .le-editorial h1 {
        font-size: 26px;
    }

    .le-forms {
        padding: 30px 20px 50px;
    }

    .le-step-title {
        font-size: 28px;
    }
}
