/* Global */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
}

/* main */
main {
  display: flex;
  flex-direction: column;
  margin: 20px;
  align-items: center;
  justify-content: center;
  min-height: 82vh;
}

main h2 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 272px;
}

form input {
  padding: 9px;
  border-radius: 5px;
}

/* calender icon */
.input-wraper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wraper input {
  width: 100%;
  padding: 9px;
  padding-right: 35px;
  border: 1px solid #ccc;
}

.calender-icon {
  position: absolute;
  right: 10px;
  color: #535353;
  pointer-events: none;
}

.calender-icon:hover {
  color: #887e7e;
}

button {
  background-color: #535353;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 9px;
  border: none;
  border-radius: 5px;
}

button:hover {
  color: #ffffff;
  background-color: #887e7e;
}

/* hasil hitung */
#result {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
}

/* footer */
footer {
  text-align: center;
}
