.oooclir-profile form {
  display: flex;
  width: 100%;
}

.oooclir-profile form span {
  color: #d32f2f;
}

.oooclir-profile__picture {
  display: flex;
  width: 20%;
}

.oooclir-profile__picture input[type="file"] {
  width: 100%;
  margin-top: 12px;
}

.oooclir-profile__picture label {
  font-weight: bold;
  margin-top: 4px;
}

.oooclir-profile__info {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.oooclir-profile__group {
  display: flex;
  justify-content: space-between;
}

.oooclir-profile__group div {
  width: 48%;
}

.oooclir-profile__info {
  display: grid;
}

.oooclir-profile__info label {
  margin-bottom: 4px;
}

.oooclir-profile__info input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 8px;
  margin-bottom: 12px;
}

.oooclir-profile__info textarea {
  width: 100%;
  height: 120px;
  padding: 8px;
  margin-bottom: 12px;
  resize: none;
}

.oooclir-profile__info input[type="file"] {
  margin-bottom: 12px;
}

.oooclir-profile__info input[type="submit"] {
  display: flex;
  justify-content: center;
  justify-self: flex-end;
  width: 160px;
  height: 40px;
  color: #ffffff;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .oooclir-profile form {
    display: block;
  }

  .oooclir-profile__title div {
    display: flex;
    flex-wrap: wrap;
  }

  .oooclir-profile__title p:nth-child(1) {
    width: 100%;
  }

  .oooclir-profile__title p:nth-child(2) {
    width: 100%;
  }

  .oooclir-profile__editText {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .oooclir-profile__info input[type="submit"] {
    justify-self: center;
    margin-top: 12px;
  }
}