* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #ecf0f1;
  color: #2c3e50;
  line-height: 1.6;
}

.profile {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.profile__title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #8a2be2;
}
.profile__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile__form-group {
  display: flex;
  flex-direction: column;
}
.profile__form__label {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 5px;
}
.profile__form__input {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #bdc3c7;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.profile__form__input:focus {
  border-color: #8a2be2;
  outline: none;
}
.profile__form__file-input {
  padding: 5px 0;
}
.profile__form__button {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #8a2be2;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.profile__form__button:hover {
  background-color: #701ac0;
}
.profile__form__button--success {
  background-color: #2ecc71;
}
.profile__form__button--success:hover {
  background-color: #25a25a;
}
.profile__form__button--error {
  background-color: #e74c3c;
}
.profile__form__button--error:hover {
  background-color: #d62c1a;
}
.profile__profile-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-direction: column;
}
.profile__profile-picture img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #8a2be2;
}
.profile__profile-picture-hint {
  font-size: 12px;
  color: #7f8c8d;
}
.profile__message {
  font-size: 14px;
  margin-top: 10px;
}
.profile__message--success {
  color: #2ecc71;
}
.profile__message--error {
  color: #e74c3c;
}

@media (max-width: 500px) {
  .profile {
    padding: 15px;
  }
  .profile__title {
    font-size: 20px;
  }
  .profile__form__button {
    font-size: 14px;
  }
}/*# sourceMappingURL=myprofile.css.map */