.desknoria-account {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

.desknoria-account--stacked,
.desknoria-account--status-only {
    flex-direction: column;
    align-items: flex-start;
}

.desknoria-account__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.desknoria-account--stacked .desknoria-account__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
}

.desknoria-account__button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 17px;
    border: 1px solid #26384d;
    border-radius: 10px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.desknoria-account__button:hover,
.desknoria-account__button:focus-visible {
    transform: translateY(-1px);
    border-color: #19b8f2;
}

.desknoria-account__button--primary {
    background: #148eea;
    color: #fff !important;
}

.desknoria-account__button--secondary {
    background: #111722;
    color: #e9f2fb !important;
}

.desknoria-account__status,
.desknoria-account__loading {
    color: #7f9ab7;
    font-size: 13px;
}

.desknoria-account__error {
    color: #c23d46;
    font-size: 13px;
}

@media (max-width: 620px) {
    .desknoria-account,
    .desknoria-account__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .desknoria-account__button {
        width: 100%;
    }
}
