* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  width: 100%;
  height: 100vh;
  background-color: cornflowerblue;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 30%;
  background-color: #fff;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}
.container img {
  width: 70px;
  margin-bottom: 20px;
}
.container h1 {
  font-size: 25px;
  color: #333;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.inputs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.inputs select {
  width: 120px;
  height: 40px;
  padding: 10px;
  border: 1px solid rgb(141, 140, 140);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
}
button {
  width: 100%;
  height: 40px;
  background-color: rgb(109, 109, 255);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
}
.clear {
  display: none;
}
@media (max-width: 450px) {
  .container {
    width: 90%;
  }
  .inputs select {
    width: 100px;
  }
}
