* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.container {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #1903a9, rgb(135, 147, 241));
  color: #fff;
  padding: 10px;
}

.calculator {
  width: 100%;
  max-width: 600px;
  margin-left: 10%;
  margin-top: 10%;
}

.calculator h1 {
  font-size: 60px;
}

.calculator h1 span {
  color: #f4f467;
}

.input-box {
  margin: 50px 0;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
}

.input-box input {
  flex: 1;
  margin-right: 20px;
  padding: 14px 20px;
  border: 0;
  outline: 0;
  font-size: 18px;
  border-radius: 5px;
  position: relative;
}

.input-box button {
  background-color: #eeee59;
  border: 0;
  outline: 0;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  color: #333;
  font-size: medium;
  cursor: pointer;
  transition: all ease-in;
}

.input-box button:hover {
  box-shadow: 4px 4px 0px #f172ff;
}

.input-box input::-webkit-calendar-picker-indicator {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  position: absolute;
  background-position: calc(100% - 10px);
  background-size: 30px;
  cursor: pointer;
  height: auto;
}

#result {
  font-size: 30px;
}

#result span {
  color: #f155f9;
}
