.hero {
  display: flex;
  /* justify-content: space-between; */
  padding: 115px 70px;
  height: auto;
  gap: 300px;
}

.hero>div,
.hero>form {
  width: auto;
  height: 85vh;
}

form {
  display: flex;
  flex-direction: column;
}

input {
  opacity: 0.5;
  font-size: 18px;
  margin-bottom: 20px;
  height: 50px;
  border: none;
  font-style: italic;
  border-bottom: 1px solid black;
}

li {
  font-style: italic;
  list-style-position: inside;
  padding-left: 1em;
}

form h3 {
  width: 600px;
  font-style: italic;
}





form button {
  all: unset;
  width: 400px;
  height: 60px;
  border-radius: 9px;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  cursor: default;
  transition: ease-out 0.1s;
  background-color: #222223;
  ;
  color: white;
  text-decoration: none;
}

form button:hover {
  transform: scale(1.04);
  filter: brightness(0.7);
}

form button:active {
  filter: brightness(0.4);
  transform: scale(0.95);
}



form button.submitted:hover {
  transform: scale(1);
  filter: brightness(1);
}

form button.submitted:active {
  filter: brightness(1);
  transform: scale(1);
}


form input:focus,
form textarea:focus {
  outline: none;
}

#reportsent {
    position: absolute;
    right: 50px;
    bottom: 100px;
    width: auto;
    height: auto;
    color: white;
    background-color: black;
    z-index: 9999999;
    padding: 10px;
    animation: 
    notify 4.5s ease forwards;
    opacity: 0;
}


@keyframes slidein {
  from {
    transform: translateX(100%); /* Start off-screen to the left */
  }
  to {
    transform: translateX(0); /* End at its natural position */
  }
}


@keyframes notify {
    0% { transform: translateX(100%); opacity: 0; }
    10% { transform: translateX(0); opacity: 1; } /* slide in */
    80% { transform: translateX(0); opacity: 1; } /* stay */
    100% { transform: translateX(0); opacity: 0; } /* fade out */
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}