* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #da7a7a, #6a76f6);
}
form > img {
  width: 70px;

  position: relative;
  left: 40%;

  border-radius: 50%;
}
h2 {
  padding-bottom: 10px;
  margin: 10px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  font-style: inherit;
  color: #000;
}
form {
  width: 25rem;
  background-color: #c6bced;
  border-radius: 10px;
  box-shadow: 5px 0 20px rgba(15, 11, 11, 1);
  padding: 1.5rem;
}
.remarks {
  height: 10rem;
  margin-bottom: 1rem;
}
input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #070707;
  border-radius: 3px;
}
button {
  background-color: #1eae22de;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 35%;
}
button:hover {
  background-color: #15c31e;
}
