@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
select {
  appearance: none;
}
input {
  appearance: textfield;
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: -2;
}

.background-opacity {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(138, 81, 252, 0.6);
  z-index: -1;
  backdrop-filter: blur(10px);
}
.viewport {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gif-logo-gif {
  height: 10vw;
}
.container {
  background-color: rgba(138, 81, 252, 1);
  width: 30vw;
  min-width: 500px;
  height: 95vh;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0px 4px 200px rgba(0, 0, 0, 0.5);
}
.container-conversor {
  position: absolute;
  top: 25%;
  background-color: rgb(255, 255, 255, 1);
  width: 28vw;
  min-width: 450px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}
.alinhamento-inputs:not(:label) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 1vh;
}
.label {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #777777;
  display: flex;
}
.select-moeda1,
.select-moeda2,
.input-valor {
  display: flex;
  align-items: center;
  gap: 1vw;;
}
.select-moeda1,
.select-moeda2,
.input-valor {
  height: 50px;
  width: 350px;
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  padding-left: 20px;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  color: #3b3b3b;
}
.erro-placeholder::placeholder {
  color: red;
}
.converter {
  width: 20%;
  height: 15%;
  background-color: #8a51fc;
  border-radius: 0px;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -6%;
  margin-top: 1%;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
button:hover {
  background-color: #7a41d4;
  transition: background-color 0.4s ease-in-out;
}
button:active {
  opacity: 0.8;
}
.resultado-alinhamento {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #8a51fc;
  border-radius: 20px;
  height: 40%;
  width: 80%;
  padding: 10px;
}
.resultado1-logo,
.resultado2-logo {
  width: 55px;
  border: none;
  border-radius: 35px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
.seta {
  width: 35px;
  margin: 5px 0;
}
.moeda {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #777777;
}
.valor {
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #3b3b3b;
}
.resultado1,
.resultado2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}