@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: rgb(201, 4, 4);
  background: linear-gradient(
    128deg,
    rgba(201, 4, 4, 1) 0%,
    rgba(227, 127, 2, 1) 57%,
    rgba(254, 255, 0, 1) 100%
  );
}

.wrapper {
  width: 370px;
  padding: 30px;
  border-radius: 7px;
  background-color: #fff;
}

.wrapper h1 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.wrapper form {
  margin: 40px 0 20px 0;
}

form input,
form select,
form button {
  width: 100%;
  outline: none;
  border: none;
}

form p {
  font-size: 18px;
  margin-bottom: 5px;
}

form input {
  height: 50px;
  font-size: 17px;
  padding: 0 15px;
  border: 1px solid #999;
}

form input:focus {
  padding: 0 14px;
  border: 2px solid #675afe;
}

form .drop-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.drop-list .select-box {
  display: flex;
  width: 130px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid #999;
  border-radius: 5px;
}

.select-box select {
  width: auto;
  font-size: 16px;
  margin: 0 -5px 0 5px;
  background-color: transparent;
}

.select-box select::-webkit-scrollbar {
  width: 8px;
}

.select-box select::-webkit-scrollbar-track {
  background-color: #fff;
}

.select-box select::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 8px;
  border-right: 2px sold #fff;
}

.select-box img {
  max-width: 25px;
}

.drop-list .icon {
  font-size: 22px;
  cursor: pointer;
  margin-top: 30px;
}

form .exchange-rate {
  font-size: 17px;
  margin: 20px 0 30px;
}

form button {
  height: 52px;
  color: #fff;
  background-color: #675afe;
  cursor: pointer;
  font-size: 17px;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
