*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}
body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #32cd9c;
}
.container {
  width: 350px;
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}
.container input,
.container textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #777777;
  margin-bottom: 20px;
  font-size: 16px;
  outline: none;
}
.container input::placeholder {
  color: white;
}
.btn {
  border: none !important;
  cursor: pointer;
  background-color: #32cd9c;
  margin: 15px 0;
  font-size: 16px;
  width: 100%;
  padding: 14px;
}
.btn:hover {
  background-color: #1f7d5f;
  color: white;
}
