* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "poppins", sans-serif;
  font-size: 18px;
}
body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e1d26;
}
.container {
  width: 500px;
  padding: 30px;
  border-radius: 10px;
  background-color: #152b35;
}
h4 {
  margin-bottom: 10px;
  font-size: 24px;
  color: white;
}
input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}
textarea {
  width: 100%;
  padding: 10px;
}
#submit {
  border: none;
  background-color: #3b82f6;
  color: white;
  width: 200px;
  margin-top: 10px;
  border-radius: 5px;
}
#submit:hover {
  background-color: #333333;
}
a {
  color: inherit;
  text-decoration: none !important;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
