.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons form {
    display: contents;
}

.header-button {
    white-space: nowrap;
    border: 0;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.header-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.header-burger-container {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.header-burger-toggle {
    display: none;
}

.header-burger-menu {
    /*width: 100%;*/
    text-align: right;
    /*flex: 1;*/
}

.header-burger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    width: 100%;
}

@media (max-width: 1000px) {
    .header-buttons {
        display: none;
        flex-wrap: wrap;
        width: 100%;
    }

    .header-button {
        flex: 1 1 45%;
        text-align: center;
    }

    .header-burger {
        display: block;
    }

    .header-burger-menu {
        width: 100%;
        flex: 1;
    }
}