/*******************************************************
 *
 * General
 *
 *******************************************************/

header.header .hd-wrap .logo a,
.ip-banner {
    display: none;
}

header.header .hd-wrap {
    justify-content: center;
}

#inner-page-wrapper>* {
    min-width: 100%;
    padding: 0;
}

.client-login {
    position: relative;
    display: block;
    padding: 158px 30px 85px;
    font-family: var(--font-family-title);
}

.client-login__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.client-login__bg:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
    pointer-events: none;
}

.client-login__container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 477px;
    margin: 0 auto;
    background: rgba(81, 37, 49, 0.7);
    padding: 65px 30px;
}

.client-login__logo {
    position: relative;
    display: block;
}

.client-login__logo img {
    display: block;
    max-width: 158px;
    margin: 0 auto;
}

.client-login__heading {
    position: relative;
    display: block;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.client-login__form {
    position: relative;
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

.client-login__field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.client-login__field+* {
    margin-top: 10px;
}

.client-login__field.as-button {
    margin-top: 30px;
}

.client-login__label,
.client-login__input {
    color: #FFF !important;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.client-login__label {
    display: block;
    flex-shrink: 0;
}

.client-login__input {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    background: transparent;
    display: block;
    width: 210px;
    height: 32px;
    padding: 12px 8px;
    border: 1px solid #C0C0C0;
    text-transform: none;
}

.client-login__submit {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 142px;
    height: 62px;
    margin: 0 auto;
    border: 1px solid var(--secondary);
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.38px;
    text-transform: uppercase;
    transition: 0.35s ease-in-out;
}

.client-login__submit:focus,
.client-login__submit:hover {
    background: var(--secondary);
}

.client-login__links {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.client-login__links a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    transition: 0.35s ease-in-out;
}

.client-login__links a:focus,
.client-login__links a:hover {
    color: var(--secondary);
}

.client-login__links>*+* {
    border-left: 1px solid #fff;
    margin-left: 10px;
    padding-left: 10px;
}

.loading-icon{
    margin: auto;
}

.client-login-message{
    text-align: center;
    color: #d93025;
}

.client-login-message.success{
    color: #57ab21;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    header {
        display: none;
    }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 480px) {
    .client-login__heading {
        font-size: 25px;
    }

    .client-login__field {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-login__input {
        width: 100%;
    }

    .client-login__form {
        width: 100%;
    }

    .client-login__field+* {
        margin-top: 25px;
    }

    .client-login__links {
        flex-direction: column;
    }

    .client-login__links a {
        font-size: 12px;
        padding: 10px !important;
        margin-left: 0 !important;
        border-left: 0 !important;
    }
}