#form-messages {
  padding: 10px 5px;
  text-align: left;
}

#message-content {
  resize: vertical;
  max-height: 80px;
  min-height: 40px;
}

.form-label {
  display: block;
  position: relative;
  margin: 20px 0px;
}

.label-txt {
  padding-left: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  color: black;
  transition: ease 0.3s;
}

.input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none;
}

.line-box {
  margin-bottom: 10px;

  width: 100%;
  height: 2px;

  position: relative;
  top: 0px;

  background: #bcbcbc;
}

.line {
  width: 0%;
  height: 2px;

  position: absolute;
  top: 0px;
  left: 50%;

  transform: translateX(-50%);
  background: var(--pink);
  transition: ease 0.6s;
}

.input:focus + .line-box .line {
  width: 100%;
}

.label-active {
  top: -3em;
}

#form-background {
  padding: 40px;
  background-color: white;
  box-shadow: rgba(41, 0, 46, 0.25) 0px 54px 55px,
    rgba(41, 0, 46, 0.12) 0px -12px 30px, rgba(41, 0, 46, 0.12) 0px 4px 6px,
    rgba(41, 0, 46, 0.17) 0px 12px 13px, rgba(41, 0, 46, 0.09) 0px -3px 5px;
}

#btn-send {
  display: flex;
  justify-content: flex-end;
}

.button-38 {
  padding: 0.75rem 1rem;
  background-color: var(--pink);
  background-image: unset;

  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
  text-decoration: none #d1d5db solid;
  text-decoration-thickness: auto;

  border: 0;
  border-radius: 0.5rem;
  box-sizing: border-box;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);

  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: all 0.5s;
}

.button-38:hover {
  background-color: #edc38c;
  box-shadow: rgba(73, 81, 85, 0.12) 0px 2px 4px 0px,
    rgba(73, 81, 85, 0.32) 0px 2px 16px 0px;
}

.button-38:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.button-38:active {
  background-color: var(--dark-pink);
}

.button-38:disabled {
  background-color: gray;
}

.button-38:focus-visible {
  box-shadow: none;
}

.error {
  margin-top: 5px;
  position: relative;
  top: 0;
  color: red;
  animation: fade-in-down 0.3s ease-in-out;
}

#messages .row {
  width: 100%;
  margin: 0;
}

.input {
  border-image: unset !important;
  margin-bottom: 0px !important;
}
