* {
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.btn1 {
  border: none;
  background-color: #0A3871;
  border: 1px solid #0A3871;
  color: #fff;
  border-radius: 24px;
  padding: 23px;
  gap: 8px;
  font-size: 16px;
  transition: all 300ms ease-out;
  font-weight: 400;
  line-height: 19.36px;
}

.btn1:hover {
  border: 1px solid #0A3871;
  background-color: #EFF1FA;
  color: #0A3871;
}

@media screen and (min-width: 767px) {
  .btn1 {
    width: 45vw;
  }
}
.btn2 {
  border: none;
  background-color: #EFF1FA;
  border: 1px solid #072B61;
  color: #072B61;
  border-radius: 24px;
  padding: 23px;
  gap: 8px;
  font-size: 16px;
  transition: all 300ms ease-out;
  font-weight: 400;
  line-height: 19.36px;
}

.btn2:hover {
  border: 1px solid #072B61;
  background-color: #072B61;
  color: white;
}

@media screen and (min-width: 767px) {
  .btn2 {
    width: 45vw;
  }
}
.logo {
  width: 100px;
}

html {
  background-color: #F3F5FC;
}

.text-input {
  padding-top: 1rem;
  background-color: #F3F5FC;
  border: none;
  color: #0A3871;
  width: 90vw;
  font-size: 1.7rem;
  min-height: 20vh;
  text-align: left;
  word-wrap: break-word;
}

.text-input::-moz-placeholder {
  color: #0A3871;
}

.text-input:-ms-input-placeholder {
  color: #0A3871;
}

.text-input::placeholder {
  color: #0A3871;
}

.text-input::marker {
  border: #0A3871 solid 1px;
}

@media screen and (min-width: 767px) {
  .text-input {
    min-height: 30vh;
  }
}
@media screen and (min-width: 1024px) {
  .text-input {
    width: 45vw;
  }
}
.muneco {
  display: none;
}

.result {
  display: flex;
  flex-direction: column;
  color: black;
  background-color: white;
  border-radius: 32px;
  box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
  text-align: center;
  text-justify: center;
  min-height: 166px;
  width: 90vw;
  border: none;
  height: auto;
  border: 1rem;
}

.result::-moz-placeholder {
  font-size: 1.7rem;
  font-weight: 600;
  color: black;
}

.result:-ms-input-placeholder {
  font-size: 1.7rem;
  font-weight: 600;
  color: black;
}

.result::placeholder {
  font-size: 1.7rem;
  font-weight: 600;
  color: black;
}

@media screen and (min-width: 1024px) {
  .muneco {
    display: block;
    width: 80%;
  }
}
.btn3 {
  border: none;
  border: 1px solid #072B61;
  color: #072B61;
  border-radius: 24px;
  padding: 23px;
  font-size: 16px;
  transition: all 300ms ease-out;
  font-weight: 400;
  line-height: 19.36px;
  display: none;
  width: 80%;
}

.btn3:hover {
  border: 1px solid #072B61;
  background-color: #072B61;
  color: white;
}

@media screen and (min-width: 767px) {
  .btn3 {
    width: 80%;
  }
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header {
  width: 100%;
  height: 10vh;
}
.header .logo {
  padding-top: 24px;
  padding-left: 16px;
}

.input-area {
  margin: auto;
}

.info {
  color: #495057;
  margin: 1rem;
  font-size: 14px;
  display: flex;
  gap: 0.8rem;
  align-self: flex-start;
  justify-content: center;
  align-items: center;
}

.material-symbols-outlined {
  color: white;
  background-color: #67808E;
  border-radius: 50px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 90vw;
  padding-bottom: 2rem;
}

.result {
  justify-content: center;
  align-items: center;
  gap: auto;
}

@media screen and (min-width: 767px) {
  .header {
    padding-bottom: 40px;
  }
  .header .logo {
    padding-left: 40px;
    padding-top: 70px;
  }
  .buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .input-area {
    position: absolute;
    left: 20vw;
    top: 20vh;
  }
  .info {
    position: absolute;
    bottom: 20vh;
    left: 20vw;
  }
  .buttons {
    position: absolute;
    width: 40vw;
    bottom: 9vh;
    left: 20vw;
  }
  .result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25vw;
    height: 90vh;
    position: absolute;
    top: 5vh;
    right: 5vw;
    gap: 5%;
  }
}/*# sourceMappingURL=styles.css.map */