.formContainer {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-top: 25px;
}

input {
    padding-bottom: 10px;
    display: block;
    width: 80%;
    border: none;
    border-bottom: 2px solid rgb(130, 109, 0);
    box-shadow: inset 0 0 10px #ffd50235;
}

input:focus {
    background-color: rgba(255, 225, 0, 0.281);
  }


input[id="message"] {
    height: 100px;
}

button {
    background-color: #656500;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
  }