textarea {
  width: 60%;
  height: 50vh;
  resize: none;
  padding: 10px;
  margin-top: 3.5%;
  outline: none;
  border-radius: 5px;
  border: 0.3px solid #d2d2d2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

input {
  width: 30%;
  margin: 10px;
  padding: 5px;
  border: 0.3px solid #d2d2d2;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.submitButton {
  border: none;
  background-color: #398cb3;
  color: white;
  border: 0.3px solid #d2d2d2;
  border-radius: 5px;
  cursor: pointer;
  width: 10%;
  height: 30px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-transform: lowercase;
}
.submitButton:hover {
  transform: scale(1.05);
}

.actionsOuterCointainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.actionsContainer {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
