/*variables.scss*/
.form-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  align-items: end;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 80rem) {
  .form-container {
    justify-items: start;
    gap: unset;
    max-width: 45rem;
    width: 82.5%;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-wrap: wrap;
  align-content: center;
  gap: 0.5rem;
}

input {
  max-width: 100%;
  min-width: 3.75rem;
  width: 5.479rem;
  padding: 1rem 0.5rem;
  border: 0.125rem solid #DCDCDC;
  border-radius: 0.5rem;
  font-weight: 800;
}
@media screen and (min-width: 80rem) {
  input {
    min-width: 5rem;
    width: 10rem;
    height: 4.5rem;
    font-size: 2rem !important;
  }
}
input:focus {
  border-color: #854DFF;
  outline: none;
}
input:focus::-moz-placeholder {
  font-weight: 800;
  color: #151515;
}
input:focus::placeholder {
  font-weight: 800;
  color: #151515;
}

label {
  font-size: 0.75rem;
  color: #716F6F;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 80rem) {
  label {
    font-size: 0.875rem;
    letter-spacing: 0.25rem;
  }
}

.error-message {
  font-size: 0.875rem;
  display: none;
  color: #FF5959;
}

.error-input {
  border: 0.125rem solid #FF5959;
}

.error-label {
  color: #FF5959;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.button-container {
  display: flex;
  position: relative;
  align-items: center;
}

hr {
  width: 100%;
  height: 0.063rem;
  border: none;
  background-color: #DCDCDC;
}

.send__btn {
  position: absolute;
  left: 40%;
  border-radius: 50%;
  border: none;
}
@media screen and (min-width: 80rem) {
  .send__btn {
    left: 87%;
  }
}

.arrow {
  background-color: #854DFF;
  border-radius: 50%;
  padding: 1rem;
  width: 4rem;
}
@media screen and (min-width: 80rem) {
  .arrow {
    width: 6rem;
  }
}
.arrow:hover, .arrow:focus {
  background-color: #151515;
  outline: none;
}

.output-container h1 {
  font-size: 3.5rem;
  font-weight: 800;
  font-style: italic;
}
@media screen and (min-width: 80rem) {
  .output-container h1 {
    font-size: 6.5rem;
    font-weight: 1000;
  }
}

.output__result {
  color: #854DFF;
  font-weight: 800;
  font-style: italic;
}
@media screen and (min-width: 80rem) {
  .output__result {
    font-weight: 1000;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

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

html, body {
  background-color: #F0F0F0;
  overflow-x: hidden;
}

main {
  background-color: #fff;
  overflow: hidden;
}

body {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-content: center;
  justify-content: center;
  align-items: center;
}

main {
  border-radius: 1.5rem 1.5rem 6.25rem 1.5rem;
  width: 90%;
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 80rem) {
  main {
    max-width: 52.5rem;
    padding: 3.5rem;
    border-radius: 1.5rem 1.5rem 12.5rem 1.5rem;
  }
}

.output-container {
  padding: 4rem 0 0 0;
}
.output-container h1 {
  padding-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */