.titleEditWrapper {
  position: relative;
  width: 100%;
  height: 5rem;

  border-bottom: solid;
  border-width: var(--standard-border-width);
  border-color: var(--medium-gray);
  box-sizing: border-box;

  padding-left: var(--xxl-padding);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.titleEditInput {
  font-size: var(--font-size-xl);
  width: 80%;
}

.inputWrapper,
.errorsWrapper {
  width: 100%;
  flex: 1 1 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.errorBorder {
  margin: var(--small-margin);
  padding: var(--small-padding);
  border: solid 1px var(--error-red);
  border-radius: var(--base-border-radius);
}
