.person {
  cursor: pointer;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  background-color: #0074e0;
  background-image:
    linear-gradient(to right, rgb(255 255 255 / 80%), rgb(255 255 255 / 80%)),
    linear-gradient(to right, #0074e0, #0074e0);
  border: 2px solid rgb(255 255 255);
  border-radius: 50%;

  transition: opacity 0.2s ease;

  &:hover {
    opacity: 0.8;
  }
}

.layout {
  display: flex;
  flex-direction: row;
}

.password-button {
  cursor: pointer;

  width: 240px;
  padding: 0 10px;

  font-size: 17px;
  line-height: 32px;
  color: var(--default-color-black);

  background-color: var(--color-gray-eee);
  border: 1px solid var(--color-gray-eee);
  border-radius: 5px;
  outline: none;
  box-shadow:
    rgb(0 0 0 / 20%) 0 0 0 0,
    rgb(0 0 0 / 14%) 0 0 0 0,
    rgb(0 0 0 / 12%) 0 0 0 0;
}

.profile {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;

  &__title {
    font-weight: bold;
  } 

  &__main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 100%;
    margin-left: 40px;

    font-size: 20px;
  }

  &__field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  &__field-value {
    color: var(--color-text-subtlest);
    font-size: 14px;
  }
}