header .actions > .login {
    display: none !important;
}

.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-login-button,
.header-register-button,
.header-logout-button,
.header-account-button {
    min-height: 38px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.header-login-button {
    padding: 0 15px;
    color: #dedee1;
    background: #15161b;
    border: 1px solid #2b2c32;
}

.header-login-button:hover {
    color: #ffffff;
    border-color: #555760;
    background: #1b1c22;
}

.header-register-button {
    padding: 0 17px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #ff2438,
        #ca091d
    );
    border: 0;
    box-shadow: 0 8px 24px rgba(229, 15, 39, .25);
}

.header-register-button span {
    display: inline-block;
    margin-left: 5px;
}

.header-register-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(229, 15, 39, .38);
}

.header-account-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 11px;
    color: #ffffff;
    text-align: left;
    background: #15161b;
    border: 1px solid #2b2c32;
}

.account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: #ffffff;
    font-size: 7px;
    background: linear-gradient(
        135deg,
        #ff2438,
        #a20819
    );
    border-radius: 50%;
    box-shadow: 0 0 17px rgba(255, 36, 56, .35);
}

.account-information {
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-width: 110px;
}

.account-information strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-information small {
    color: #ff6877;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.header-logout-button {
    padding: 0 13px;
    color: #a9abb2;
    background: transparent;
    border: 1px solid #292a30;
}

.header-logout-button:hover {
    color: #ffffff;
    border-color: #762631;
    background: #251014;
}

@media (max-width: 900px) {
    .header-login-button {
        display: none;
    }

    .header-register-button {
        padding: 0 13px;
    }

    .account-information {
        display: none;
    }

    .header-account-button {
        padding: 4px;
        border: 0;
        background: transparent;
    }

    .header-logout-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-register-button {
        min-height: 34px;
        padding: 0 11px;
        font-size: 9px;
    }

    .header-auth-buttons {
        gap: 4px;
    }

    .account-icon {
        width: 30px;
        height: 30px;
    }
}
