.tne-login-button-wrap {
    position: relative;
    z-index: 20;
    display: flex;
}

.tne-login-button-inner {
    position: relative;
    display: inline-block;
}

.tne-login-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tne-login-button:hover,
.tne-login-button:focus {
    color: #fff;
    background: #333;
    text-decoration: none;
    outline: 0;
}

.tne-login-button__text {
    display: inline-block;
    white-space: nowrap;
}

.tne-login-account-menu {
    position: absolute;
    inset-inline-start: 0;
    top: 100%;
    width: 190px;
    margin-top: 8px;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.tne-login-button-inner.is-open .tne-login-account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tne-login-account-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: start;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.tne-login-account-menu a:hover,
.tne-login-account-menu a:focus {
    color: #111;
    background: #f3f4f6;
    text-decoration: none;
    outline: 0;
}
