/* Variables */
/* Document */
* {
  font-family: "Poppins", Verdana, Geneva, Tahoma, sans-serif;
}

html {
  font-size: 10px;
}

body {
  background-color: hsl(0, 0%, 94%);
  color: hsl(0, 1%, 44%);
  height: 100%;
  margin: 2rem;
}

.page__container {
  position: relative;
  top: 10rem;
  margin-right: auto;
  margin-left: auto;
  background: hsl(0, 0%, 100%);
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  border-bottom-right-radius: 8rem;
  max-width: 400px;
  box-shadow: 0 4px 8px 0 hsl(0, 0%, 86%), 0 4px 8px 0 hsl(0, 0%, 86%);
}

/* Form Inputs */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  margin-left: 0.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

input, .input__prefix {
  padding: 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

input {
  width: 100%;
  font-weight: 400;
  border: 1px solid hsl(0, 0%, 86%);
  border-radius: 0 4px 4px 0;
}
input:hover, input:focus-visible, input:focus-within, input:active {
  outline: none;
}

.input__prefix {
  font-weight: 700;
  border-top: 1px solid hsl(0, 0%, 86%);
  border-left: 1px solid hsl(0, 0%, 86%);
  border-bottom: 1px solid hsl(0, 0%, 86%);
  border-radius: 4px 0 0 4px;
  width: 4rem;
  display: flex;
  justify-content: center;
  background-color: hsl(0, 0%, 86%);
}

/* Portions */
.portion {
  color: hsl(259, 100%, 65%);
  font-weight: 600;
  line-height: 1.5;
  font-size: 2rem;
}
.portion:first-child {
  margin-top: 1rem;
}
.portion span:last-child {
  font-weight: 900;
  color: hsl(0, 0%, 8%);
  font-size: 4rem;
  margin-left: 1rem;
}/*# sourceMappingURL=index.css.map */