.account-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* color: #7e7e7e; */
  padding-bottom: 1rem;
}

.account-photo-label {
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 0.5rem;
}

.account-photo-frame {
  aspect-ratio: 1/1;
  height: 100px;
  width: 100px;
  background: #f2f2f2;
  border-radius: 100vmax;
  overflow: hidden;
}

.account-photo-frame img,
.account-photo-frame svg-img,
.account-photo-frame svg {
  width: 100%;
  height: 100%;
}

.account-photo-upload {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 6px 10px;
  gap: 10px;
  border: 1.5px solid color-mix(in srgb, var(--text), transparent 80%);
  border-radius: 6px;
  width: fit-content;
  background: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: all ease 300ms;
}

.account-photo-upload:hover {
  background: #c2c2c222;
}

.account-photo-issue {
  font-size: 12px;
  transition: all ease 600ms;
  height: 16px;
  color: crimson;
}

.account-photo-issue:empty {
  opacity: 0;
  height: 0;
  filter: blur(4px);
}
