.breadcrumb {
    display: none !important;
}

.auth-page {
    background: var(--background-primary-dark);
}

.auth-shell {
    position: relative;
    min-height: calc(100vh - 70px);
    overflow: hidden;
    background:
            linear-gradient(180deg, rgba(6, 10, 14, 0.70) 0%, rgba(6, 10, 14, 0.92) 100%),
            url("../../images/background/bg-centre-biologie.jpg") center center no-repeat;
    background-size: cover;
}

.auth-shell__overlay {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 50% 12%, rgba(207, 255, 255, 0.16), transparent 22%),
            radial-gradient(circle at 50% 45%, rgba(86, 232, 255, 0.10), transparent 36%),
            linear-gradient(90deg, rgba(8, 10, 12, 0.55) 0%, rgba(8, 10, 12, 0.25) 50%, rgba(8, 10, 12, 0.55) 100%);
    pointer-events: none;
}

.auth-shell__grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
    opacity: 0.22;
    pointer-events: none;
}

.auth-shell__container {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.auth-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 34px;
}

.auth-layout--register {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
}

.auth-panel {
    position: relative;
}

.auth-panel--content {
    display: flex;
}

.auth-story {
    max-width: 620px;
    position: relative;
    padding: 18px 0;
}

.auth-story__kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-light-grey-3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.auth-story__title {
    margin-bottom: 18px;
    font-size: 50px;
    line-height: 54px;
    color: #fff;
    text-transform: uppercase;
}

.auth-story__text {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-light-grey-2);
}

.auth-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
    max-width: 560px;
}

.auth-metric {
    padding: 16px 14px;
    background: rgba(10, 16, 22, 0.52);
    border: 1px solid rgba(255,255,255,0.08);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.auth-metric__value {
    display: block;
    font-size: 26px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.auth-metric__label {
    display: block;
    font-size: 13px;
    line-height: 17px;
    color: var(--color-light-grey-3);
    text-transform: uppercase;
}

.auth-story__quote {
    max-width: 520px;
    padding: 16px 18px 16px 22px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--color-secondary-1);
    color: var(--color-light-grey-2);
    font-style: italic;
}

.auth-feature-list {
    display: grid;
    gap: 14px;
    max-width: 540px;
}

.auth-feature {
    position: relative;
    padding: 16px 18px 16px 22px;
    background: rgba(10, 16, 22, 0.52);
    border: 1px solid rgba(255,255,255,0.08);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.auth-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: var(--color-secondary-1);
    box-shadow: 0 0 10px rgba(249, 92, 51, 0.35);
}

.auth-feature__title {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.auth-card {
    position: relative;
    padding: 34px 30px 30px;
    background: rgba(7, 10, 14, 0.84);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    clip-path: polygon(0 0, 18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px));
    box-shadow:
            0 24px 60px rgba(0,0,0,0.38),
            inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../images/background/container-bg.svg");
    background-size: 70px 70px;
    opacity: 0.08;
    pointer-events: none;
}

.auth-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.03), transparent 28%),
            radial-gradient(circle at top center, rgba(164, 255, 255, 0.08), transparent 28%);
    pointer-events: none;
}

.auth-card__top,
.auth-form {
    position: relative;
    z-index: 1;
}

.auth-logo {
    width: auto;
    max-width: 92px;
    max-height: 72px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 18px rgba(160, 255, 255, 0.18));
}

.auth-card__eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary-1);
}

.auth-card__title {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 40px;
    color: #fff;
}

.auth-card__subtitle {
    margin-bottom: 24px;
    color: var(--color-light-grey-2);
}

.auth-form-group {
    margin-bottom: 18px;
}

.auth-form-group label {
    display: inline-block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.auth-card .form-control,
.auth-card input[type="email"],
.auth-card input[type="text"],
.auth-card input[type="password"] {
    width: 100%;
    min-height: 56px;
    padding: 14px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.055);
    color: #fff;
    border-radius: 0;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.auth-card .form-control::placeholder,
.auth-card input::placeholder {
    color: rgba(206, 219, 228, 0.50);
}

.auth-card .form-control:focus,
.auth-card input:focus {
    border-color: rgba(249, 92, 51, 0.7);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(249, 92, 51, 0.10);
    outline: none;
}

.auth-card .form-text,
.auth-card .help-text {
    color: var(--color-light-grey-4);
    font-size: 13px;
    line-height: 18px;
    margin-top: 8px;
}

.auth-card ul li {
    color: #ff9c9c;
}

.auth-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-left: 4px solid var(--color-danger);
    background: rgba(220, 40, 40, 0.12);
    color: #ffd1d1;
}

.auth-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-light-grey-2);
    font-size: 15px;
    line-height: 22px;
}

.auth-checkbox--top {
    align-items: flex-start;
}

.auth-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-secondary-1);
}

.auth-submit {
    width: 100%;
    min-height: 58px;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
}

.auth-submit--full {
    width: 100%;
}

.auth-card__footer-note {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 14px;
    color: var(--color-light-grey-3);
}

.auth-card__footer-note a {
    font-weight: 600;
}

.password .Control-label--showPassword {
    position: absolute;
    right: 12px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.password .svg-toggle-password {
    fill: rgba(255, 255, 255, 0.75);
}

.password .closed-eye {
    opacity: 0;
    height: 0;
}

.password .closed-eye.open {
    opacity: 1;
    transition: opacity 300ms ease, height 400ms ease;
    width: 4px;
    height: 44px;
}

.auth-password-hints {
    display: grid;
    gap: 8px;
    margin-top: -2px;
}

.password-hint {
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: var(--color-light-grey-3);
    font-size: 14px;
    line-height: 18px;
}

.password-hint.is-valid {
    border-color: rgba(81, 212, 138, 0.35);
    color: #8ee39f;
    background: rgba(81, 212, 138, 0.08);
}

.password-hint.is-invalid {
    border-color: rgba(255, 156, 156, 0.18);
}

.availability-feedback {
    margin-top: 8px;
    font-size: 13px;
    line-height: 18px;
}

.availability-feedback.is-loading {
    color: var(--color-light-grey-4);
}

.availability-feedback.is-success {
    color: #8ee39f;
}

.availability-feedback.is-error {
    color: #ff9c9c;
}

#register-submit.is-disabled,
#register-submit:disabled {
    opacity: .65;
    pointer-events: none;
}

.auth-checkline {
    margin-bottom: 16px;
}

.auth-card .strength-lines {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    width: 100%;
    height: 6px;
    z-index: 3;
}

.auth-card .strength-lines .line {
    position: absolute;
    height: 6px;
    border-radius: 2px;
    transition: background-color 0.25s ease-in;
}

.auth-card .strength-lines .line.bg-transparent {
    background-color: transparent;
}

.auth-card .strength-lines .line.bg-red {
    background-color: var(--color-danger);
}

.auth-card .strength-lines .line.bg-orange {
    background-color: var(--color-warning);
}

.auth-card .strength-lines .line.bg-green {
    background-color: var(--color-success);
}

.auth-card .strength-lines .line:not(:first-of-type):not(:last-of-type) {
    left: 33%;
    right: 33%;
}

.auth-card .strength-lines .line:first-of-type {
    left: 4px;
    right: 68%;
}

.auth-card .strength-lines .line:last-of-type {
    left: 68%;
    right: 4px;
}

@media (max-width: 1199px) {
    .auth-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
    }

    .auth-layout--register {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 540px);
    }

    .auth-story__title {
        font-size: 42px;
        line-height: 46px;
    }

    .auth-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .auth-shell__container {
        padding-top: 24px;
        padding-bottom: 24px;
        align-items: flex-start;
    }

    .auth-layout,
    .auth-layout--register {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .auth-panel--form-first {
        order: -1;
    }

    .auth-panel--content {
        display: block;
    }

    .auth-story {
        max-width: none;
        padding: 0;
    }

    .auth-story__title {
        font-size: 34px;
        line-height: 38px;
    }

    .auth-story__text {
        font-size: 16px;
        line-height: 26px;
    }

    .auth-metrics {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .auth-feature-list {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .auth-shell {
        min-height: calc(100vh - 70px);
        background-position: center top;
    }

    .auth-shell__container {
        padding-top: 16px;
        padding-bottom: 22px;
    }

    .auth-card {
        padding: 24px 18px 22px;
    }

    .auth-card__title {
        font-size: 30px;
        line-height: 34px;
    }

    .auth-card__subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .auth-story__kicker,
    .auth-card__eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .auth-story__title {
        font-size: 26px;
        line-height: 30px;
    }

    .auth-story__quote {
        padding: 14px 16px;
    }

    .auth-feature,
    .auth-metric {
        padding: 14px;
    }

    .auth-form-group {
        margin-bottom: 16px;
    }
}