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

body {
  font-size: 32px;
  font-family: Poppins sans-serif;
  background-color: hsl(0, 0%, 94%);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: hsl(0, 100%, 100%);
  width: 40rem;
  height: 28rem;
  border-radius: 10px 10px 100px 10px;
  padding: 1rem;
}
@media only screen and (max-width: 600px) {
  .container {
    width: 20rem;
    height: 28rem;
  }
}

form {
  width: 100%;
}
form .input-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: left;
  width: 100%;
}
form .input-form label {
  font-size: 0.8rem;
  font-weight: bold;
  color: hsl(0, 1%, 44%);
  width: 5rem;
  overflow-inline: auto;
  margin: 0 0 0 10px;
}
@media only screen and (min-width: 600px) {
  form .input-form label {
    width: 8rem;
  }
}
form .input-form label input[type=text] {
  margin: 4px 0 0 0;
  max-width: 80%;
  height: 2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form .input-form label input[type=text]::placeholder {
  padding: 0 0 0 5px;
}
form .hidden-error {
  font-size: 0.5rem;
  visibility: hidden;
  color: red;
}
form .line-button {
  width: 100%;
  margin-top: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
form .line-button hr {
  width: 90%;
  position: absolute;
}
form .line-button svg {
  position: absolute;
  margin-right: 12px;
  right: 5%;
  pointer-events: none;
}
@media only screen and (max-width: 600px) {
  form .line-button svg {
    right: 45%;
  }
}
form .line-button input[type=submit] {
  position: absolute;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  right: 5%;
  background-color: hsl(259, 100%, 65%);
  border: none;
}
@media only screen and (max-width: 600px) {
  form .line-button input[type=submit] {
    right: 45%;
  }
}

.outputYears {
  background-color: hsl(0, 100%, 100%);
  font-size: 4.5rem;
  width: 100%;
  max-height: 75%;
  min-height: 65%;
  display: flex;
  justify-content: center;
  align-items: first;
  flex-direction: column;
  border-radius: 10px 10px 100px 10px;
}
@media only screen and (max-width: 600px) {
  .outputYears {
    font-size: 3.5rem;
  }
}

.outputNumbers {
  margin-left: 1.5rem;
  font-weight: bold;
}

.numbers {
  color: hsl(259, 100%, 65%);
}

/*# sourceMappingURL=style.css.map */
