/**
* CSS from auth.shiftmove.com
*/

#shiftmove-login-style * {
    box-sizing: border-box;
}

/**
   * Fix fonts that render as bold in Firefox
   */

#shiftmove-login-style {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: auto !important;
}

/**
   * Firefox specific rule
   */

@-moz-document url-prefix() {
    #shiftmove-login-style {
        font-weight: lighter !important;
    }
}

#shiftmove-login-style #shiftmove-brand {
    background: no-repeat center/80%
        url('https://shiftmove-idp-static-assets-prod.s3.eu-central-1.amazonaws.com/images/welcome-road-landscape-827x1000.jpg');
}

#shiftmove-login-style .page-container {
    background-color: var(--white);
    display: flex;
    min-height: calc(100vh - 98px);
}

#shiftmove-login-style .left,
#shiftmove-login-style .right {
    width: 100%;
    display: flex;
    align-self: stretch;
}

#shiftmove-login-style .right {
    display: none;
}

#shiftmove-login-style .overlay {
    display: none;
}

#shiftmove-login-style .content {
    width: 100%;
    margin: 0 auto;
    align-self: stretch;
}

#shiftmove-login-style .content p {
    margin: 0;
    font-size: 16px;
}

#shiftmove-login-style .alerts {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#shiftmove-login-style .custom-alert {
    font-size: 14px;
    box-shadow: none;
    width: 100%;
    padding: 10px 14px;
    border: none !important;
    outline: none;
    border-radius: 8px;
    line-height: 20px;
    vertical-align: middle;
}

#shiftmove-login-style .custom-alert.error {
    color: var(--red-red-75);
    background-color: var(--red-red-20);
}

#shiftmove-login-style .custom-alert.info {
    color: var(--blue-blue-75);
    background-color: var(--blue-blue-20);
}

#shiftmove-login-style .header-logo {
    background-color: var(--white);
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}

#shiftmove-login-style .shiftmove-logo {
    height: 25px;
}

#shiftmove-login-style .product-logo-header {
    height: 30px;
}

#shiftmove-login-style .product-logo-footer {
    height: 24px;
}

#shiftmove-login-style .form-outline {
    /* create positioning context for the alerts */
    position: relative;
    padding: 12px 20px;
}

#shiftmove-login-style .headline {
    display: none;
}

#shiftmove-login-style form .form-row > label:first-of-type {
    margin-bottom: 4px;
}

#shiftmove-login-style .form-row:last-of-type {
    margin-bottom: 0;
}

#shiftmove-login-style .form-footer {
    display: none;
}

@media screen and (max-width: 576px) {
    .desktop-only {
        display: none;
    }
    #shiftmove-login-style .header-logo {
        position: initial !important;
    }
}

/* Tablets */
@media screen and (min-width: 576px) {
    #shiftmove-login-style {
        background-color: var(--shiftmove-surface-00);
    }

    .mobile-only {
        display: none;
    }

    #shiftmove-login-style .page-container {
        background-color: var(--shiftmove-surface-00);
        align-items: center;
    }

    #shiftmove-login-style .content {
        padding: 104px 40px;
        max-width: 600px;
        min-height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #shiftmove-login-style .alerts {
        position: absolute;
        top: 0px;
        left: 0px;
        height: 0px;
    }

    #shiftmove-login-style .custom-alert {
        padding: 18px;
    }

    #shiftmove-login-style .header-logo {
        position: absolute;
        background-color: var(--shiftmove-surface-00);
        padding: 40px 48px 0 48px;
    }

    #shiftmove-login-style .shiftmove-logo {
        height: 47px;
    }

    #shiftmove-login-style .form-outline {
        background-color: var(--white);
        padding: 40px;
        border: none;
        border-radius: 8px;
    }

    #shiftmove-login-style .headline {
        display: block;
    }

    #shiftmove-login-style .form-footer {
        position: absolute;
        left: 0;
        bottom: -16px;
        height: 0;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
}

/* Desktop */
@media screen and (min-width: 992px) {
    #shiftmove-login-style.page-container {
        flex-direction: row;
    }
    #shiftmove-login-style .left,
    #shiftmove-login-style .right {
        width: 50%;
    }

    #shiftmove-login-style .right {
        display: flex;
    }

    #shiftmove-login-style .shiftmove-logo {
        height: 61px;
    }
}

/* XXL */
@media screen and (min-width: 1400px) {
    #shiftmove-login-style .overlay {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 70% !important;
    }
}

#shiftmove-login-style .content label {
    font-weight: 400;
    margin-bottom: 4px;
}

#shiftmove-login-style .content input {
    height: 40px;
    border-radius: 3px;
    border: 1px solid var(--gray-gray-30);
    box-shadow: none;
    background: var(--white);
    width: 100%;
}

#shiftmove-login-style .content input:hover {
    background: var(--shiftmove-surface-00);
}

#shiftmove-login-style .content input:focus {
    border: 1px solid var(--blue-blue-75);
    background: var(--white);
    outline: none;
    box-shadow: none;
}

#shiftmove-login-style .content input.error {
    border: 1px solid var(--red-red-40);
    background: var(--red-red-10);
}

#shiftmove-login-style form span.error {
    padding-top: 4px;
}

#shiftmove-login-style .content input[type='text'],
#shiftmove-login-style input[type='password'] {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    padding: 8px;
}

#shiftmove-login-style .content input[type='checkbox'] {
    height: 20px;
    width: 20px;
    border-radius: 3px;
    vertical-align: middle;
    position: relative;
    bottom: 1px;
    accent-color: var(--blue-blue-75);
}

#shiftmove-login-style .form-footer select {
    /* modern browsers */
    appearance: menulist;
    /* webkit browsers */
    -webkit-appearance: menulist;
    /* Firefox */
    -moz-appearance: menulist;
    background: transparent;
    border: none;
    color: var(--gray-gray-100);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
}

/* do not show dropdown arrow on IE */
#shiftmove-login-style select::-ms-expand {
    display: none;
}

#shiftmove-login-style .headline {
    font-family: 'Pangea', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin: 0 0 24px;
}

#shiftmove-login-style .inline {
    display: inline;
}

#shiftmove-login-style .tagline {
    font-family: 'Pangea', sans-serif;
    font-size: 24px;
    line-height: 34px;
}

#shiftmove-login-style .brand-content {
    margin: auto 25% auto 15%;
    padding-bottom: 64px;
}

@media screen and (max-height: 750px) {
    #shiftmove-login-style .brand-content {
        padding-bottom: 128px;
    }
}

#shiftmove-login-style .custom-button {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid;
    border-radius: 8px;
    background-color: var(--blue-blue-75);
    color: var(--white);
    cursor: pointer;
}

#shiftmove-login-style .custom-button:hover {
    background-color: var(--blue-blue-50);
}

#shiftmove-login-style .custom-button:disabled {
    background-color: var(--blue-blue-30);
}

#shiftmove-login-style .custom-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--blue-blue-75);
    margin: 16px 0 0 0;
    display: block;
}

#shiftmove-login-style .custom-link:hover,
#shiftmove-login-style .custom-link:focus,
#shiftmove-login-style .custom-link:active {
    color: var(--blue-blue-50);
}

#shiftmove-login-style .custom-link:visited {
    color: var(--blue-blue-75);
}

#shiftmove-login-style form .form-row {
    margin-bottom: 16px;
}

#shiftmove-login-style .form-footer {
    color: var(--gray-gray-100);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

#shiftmove-login-style .form-footer a {
    color: var(--gray-gray-100);
}

.padding-top-s {
    padding-top: 8px;
}

.padding-top-l {
    padding-top: 24px;
}

.padding-top-xl {
    padding-top: 32px;
}

.padding-right-xs {
    padding-right: 4px;
}

.padding-right-m {
    padding-right: 16px;
}

.padding-right-l {
    padding-right: 24px;
}

.padding-bottom-s {
    padding-bottom: 8px;
}

.padding-bottom-l {
    padding-bottom: 24px;
}

.padding-bottom-xl {
    padding-bottom: 32px;
}

.padding-left-xs {
    padding-left: 4px;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

#shiftmove-login-style .brand-layout {
    width: 100%;
    align-items: center;
}

#shiftmove-login-style .brand-image {
    background-size: cover !important;
    border-radius: 16px;
    border: none;
    margin: 0 48px 32px 0;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

#shiftmove-login-style .brand-footer {
    align-self: flex-end;
    font-family: 'Pangea', sans-serif;
}

#shiftmove-login-style .brand-footer h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

#shiftmove-login-style .brand-footer div {
    align-items: center;
    gap: 12px;
}

.flex-gap-xs {
    gap: 4px;
}

.flex-gap-s {
    gap: 8px;
}

.flex-gap-l {
    gap: 24px;
}

#shiftmove-login-style .progress-bar div {
    background: var(--blue-blue-75);
}

#shiftmove-login-style .spinner {
    display: none;
}

#shiftmove-login-style .spinner.show {
    display: inline-block !important;
    margin-right: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

#shiftmove-login-style .spinner--blue {
    display: inline-block;
    margin-right: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--blue-blue-75);
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#shiftmove-login-style .password-wrapper {
    /* Create positioning context for the show/hide icon */
    position: relative;
}

#shiftmove-login-style .show-hide-wrapper {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

#shiftmove-login-style .show-hide-wrapper svg {
    display: none;
}

#shiftmove-login-style .show-hide-wrapper svg.show {
    display: block;
}

#shiftmove-login-style label i.icon {
    color: var(--blue-blue-75);
}

#shiftmove-login-style .hidden {
    display: none;
}

#shiftmove-login-style fieldset {
    border: 0;
    margin: 0 0 15px 0;
    min-width: inherit;
    padding: 0;
    width: 100%;
}

#shiftmove-login-style label span.required {
    color: #ee3e54;
}

#shiftmove-login-style .infos-env {
    margin: 0 !important;
}

#shiftmove-login-style #submit_forgot {
    width: auto !important;
}

#shiftmove-login-style #cancel-forgot-shiftmove {
    width: auto !important;
    background-color: var(--white);
    color: var(--shiftmove-black);
}

#shiftmove-login-style #cancel-forgot-shiftmove:hover {
    background-color: var(--blue-blue-20);
}

#shiftmove-login-style .connect-btn {
    background-color: var(--blue-blue-75);
    color: var(--white);
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.05px;
    font-family: Inter, sans-serif;
    border-radius: 10px;
}

#shiftmove-login-style .connect-btn:hover {
    background-color: var(--blue-blue-50);
    text-decoration: none;
}
