.modal-item-group {
    margin-bottom: 15px;
}

.modal-item-group .form-label {
    margin-bottom: .3rem;
}

.modal-item-group .group-input-button {
    display: flex;
    align-items: center;
    gap: 7px;
}

.modal-item-group .group-input-button button {
    width: fit-content;
    text-wrap: nowrap;
}

.modal-item-group .group-input-button button.active {
    background-color: #bb9141 !important;
}

.menu-container {
    position: relative;
    display: inline-block;
}

.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.dropdown-user {
    display: none;
    position: absolute;
    margin-top: 5px;
    border-radius: 6px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    z-index: 10;
    background-color: var(--bs-secondary-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    right: 31px;
    top: -52%;
    flex-direction: column;
}

.dropdown-user button,
.dropdown-user a {
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #967942 !important;
}

.dropdown-user.show {
    display: flex !important;
}

a.google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 15px;
    border: 2px solid #967942;
    border-radius: 6px;
    padding: 9px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    font-size: 17px;
    font-weight: 700;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
    margin-right: .75em;
}

.divider:not(:empty)::after {
    margin-left: .75em;
}

.logo img {
    width: 70%;
    margin: 15px 0;
    object-fit: contain;
}

.avatar-group {
    justify-content: center;
}

@media (max-width: 395px) {
    #label-title {
        font-size: 12px;
    }

    .logo img {
        width: 90%;
        margin: 5px 0;
    }
}