.container-login {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 40000;
    width: 100%;
    overflow: hidden;
    border-top: 4px solid transparent;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .container-login {
        bottom: auto;
    }
}

.container-login .login-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
}

.container-login .login-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    border-radius: 12px 12px 0 0;
    background: #003087;
}

@media (min-width: 640px) {
    .container-login .login-content {
        max-width: 426px;
        border-radius: 12px;
        left: calc(50% - 213px);
        top: calc(50% - 308px);
    }
}

.container-login .login-content .close {
    width: 35px;
    height: 35px;
    margin: 0 0 0 -5px;
}

.container-login .title {
    line-height: 1.33;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.container-login .new-user {
    margin-top: 4px;
    font-size: 16px;
}

.container-login .new-user a {
    margin-left: 4px;
    padding: 0;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 300;
    color: #ffda27;
}

.container-login .tabs {
    width: 100%;
    min-height: 32px;
    margin: 0;
}

.container-login .tabs .switch {
    display: flex;
    align-items: center;
    height: 68px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.container-login .tabs .switch li {
    display: flex;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 68px;
}

.container-login .tabs .switch li .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 32px;
    padding: 0 12px;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    background-color: #ebebf514;
    box-sizing: border-box;
    cursor: pointer;
    transition: .2s ease-in-out background;
    user-select: none;
}

.container-login .tabs .switch li .btn:hover {
    color: #fff !important;
}

.container-login .tabs .switch li.ui-state-active .btn {
    background-color: transparent;
}

.container-login .tabs .switch li .btn.old {
    border-radius: 16px 0 0 0;
}

.container-login .tabs .switch li .btn.new {
    border-radius: 0 16px 0 0;
}

.container-login .tabs .switch li .btn.new .new-label {
    height: 23px;
    padding: 4px;
    border-radius: 3px;
    line-height: 14px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #e5194d;
    box-sizing: border-box;
}

.container-login .tabs .switch li .btn.new .label {
    margin-left: 8px;
    line-height: 1;
}

.container-login .tabs .switch li .btn.new .label .cap {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
}

.container-login .tabs .switch li .btn.new .label .desc {
    display: block;
    font-size: 10px;
    color: #fff;
    box-sizing: border-box;
}

.container-login .tabs .tab-container {
    display: flex;
    min-height: 246px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.container-login .tabs .tab-container .login-form {
    width: 100%;
}

.container-login .tabs .tab-container input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 4px 12px;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #062454;
}

.container-login .tabs .tab-container input::placeholder {
    font-size: 16px;
    font-weight: normal;
    color: #9fb7d8;
}

.container-login .tabs .tab-container input.input-username {
    border-radius: 8px 8px 0 0;
}

.container-login .tabs .tab-container input.input-password {
    border-top-color: #003087;
    border-radius: 0 0 8px 8px;
}

.container-login .tabs .tab-container .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    border-radius: 8px;
    line-height: 1.38;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #0a84ff;
    cursor: pointer;
}

.container-login .forgotten-password {
    display: block;
    margin-top: 16px;
    margin-left: auto;
    text-align: right;
}

.container-login .forgotten-password a {
    font-size: 14px;
    text-decoration: underline;
    line-height: 32px;
}

.container-login .forgotten-password a:hover {
    text-decoration: none;
    color: #fff !important;
}

.container-login .login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    line-height: 1.38;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    background: #fff;
    cursor: pointer;
}

.container-login .login .icon-eu {
    height: 32px;
    width: 32px;
    display: block;
    margin-right: 8px;
    background: url(https://www.autobazar.eu/_images/login/icon.svg) center center no-repeat;
    background-size: contain;
}

.container-login .login-desc {
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.container-login .login-desc a {
    text-decoration: underline;
    cursor: pointer;
}

.container-login.new-login-only {
    .tabs {
        display: none;
    }
}

.container-login .separator {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: rgba(235, 235, 245, .55);
}

.container-login .separator:not(:empty)::before {
    margin-right: 1em;
}

.container-login .separator::after,
.container-login .separator::before {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(235, 235, 245, .18);
}

.container-login .separator:not(:empty)::after {
    margin-left: 1em;
}

.container-login .separator::after,
.container-login .separator::before {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(235, 235, 245, .18);
}

.container-login .buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 16px;
}

.container-login .buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .5rem;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
}

.container-login .buttons a img {
    margin-right: 6px;
}

.container-login .buttons a.facebook {
    color: #fff;
    background: #1877f2;
}

.container-login .buttons a.facebook:hover {
    color: #fff !important;
}

.container-login .buttons a.google {
    background: #fff;
    color: #262626;
}

.container-login .buttons a.google:hover {
    color: #000 !important;
}

.container-login .login-new {
    display: none;
}

.container-login.new-login-only .login-new {
    display: flex;
    min-height: 246px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
}

.container-login .login-desc-back {
    margin-top: 16px;
    text-align: center;
    color: #ebeBF599;
    line-height: 24px;
}

.container-login .login-desc-back a {
    text-decoration: underline;
    color: #ebeBF599;
    font-weight: 700;
}

.container-login .login-desc {
    padding: 10px 0;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}

.container-login .more-info-link {
    border: 1px solid #ebeBF52E;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 0;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.container-login .more-info-link img {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.container-login .new-login-box {
    border-radius: 8px;
    background: #164291;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    padding: 16px 20px 16px 16px;
    margin: 16px 0 0 0;
}

.container-login .new-login-box img {
    min-width: 40px;
    min-height: 40px;
}

.container-login .new-login-box .new-login-box_text {
    font-size: 14px;
    line-height: 20px;
}

.container-login .new-login-box_text a {
    font-weight: 400;
    color: #ffda25;
}