.auth {
    margin: auto;
    max-width: 40%;
    min-width: var(--screen-width-outer-ms);
    text-align: center;
}

.auth .elements {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile {
    display: flex;
    flex-wrap: wrap;
}

.profile .activity {
    border-top: 1px solid var(--brown);
    color: var(--dark-brown);
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    padding-top: var(--ms);
    gap: var(--ms);
}

.profile .photo-bg,
.profile .objects-bg {
    padding: var(--ms);
}

.profile .photo-bg {
    align-items: center;
    display: flex;
    background: var(--beige-grey);
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.profile .objects-bg {
    background: white;
    flex: 3;
}

.profile .object {
    min-width: var(--screen-width-inner-ms);
}

.profile-img-wgt {
    max-width: var(--screen-width-outer-ms);
}

.profile-img-wgt .clear,
.profile-img-wgt .change {
    column-gap: calc(0.5 * var(--ms));
    display: flex;
    padding-top: calc(0.5 * var(--ms));
    width: 100%;
}

.profile-img-wgt .change {
    flex-direction: column;
}

.profile-img-wgt label {
    color: var(--sidebar-bg);
    font-weight: bold;
    font-size: 13px;
}

.profile-img-wgt .change label {
    padding-bottom: 5px;
}

.profile .object dt,
.profile .photo dt {
    color: var(--sidebar-bg);
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 3px;
}

.profile .object dd {
    font-size: 0.9em;
}

.profile .object.bdr {
    border: 1px solid var(--blue);
    border-radius: 5px;
    padding: calc(0.5 * var(--ms));
}

.profile .names {
    font-size: 1.8em;
    font-weight: bold;
}

.profile .photo .frame {
    position: relative;
}

.profile .photo .change,
.profile .object .change {
    align-items: center;
    background: #ff7f2a;
    color: white;
    display: inline-flex;
    font-family: 'Material Symbols Rounded';
    justify-content: center;
    text-decoration: none;
    transition: background 0.5s ease;
}

.profile .photo .change:hover,
.profile .object .change:hover {
    background: var(--dark-orange);
}

.profile .photo .change {
    border-radius: 50%;
    font-size: 100%;
    height: 12%;
    position: absolute;
    right: 12%;
    top: 75%;
    width: 12%;
}

.profile .object .change {
    border-radius: 10px;
    font-size: 14px;
    height: 20px;
    width: 20px;
}


