* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #222;
  font-family: "Poppins", sans-serif;
}
.wrapper {
  width: 90%;
  max-width: 400px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 6px 6px 20px rgba(255, 255, 255, 0.2);
}
.app-details {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.app-icon {
  width: 150px;
}
.app-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
label {
  display: block;
  font-weight: 600;
}
input {
  font-size: 1.2em;
  font-weight: 400;
  display: block;
  width: 100%;
  color: #444;
  margin-bottom: 2rem;
  padding: 0.5rem;
  border: none;
  outline: none;
  border-bottom: 2px solid #009688;
}
input:focus {
  color: #009688;
  border-color: #009688;
}
.dropdowns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
select {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  border-radius: 3px;
  appearance: none;
  background: url("images/arrow-down.svg") no-repeat;
  background-position: left 10px top 55%, center;
  background-size: 15px 15px;
  background-color: #009688;
  color: #fff;
  cursor: pointer;
  position: relative;
  border: none;
  outline: none;
}
select option {
  background-color: #fff;
  color: #222;
}

button {
  font-size: 1rem;
  width: 100%;
  background-color: #009688;
  padding: 1rem 0;
  margin-top: 1rem;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
}
.swap {
  display: block;
  width: fit-content;
  margin: 1rem auto 0;
  padding: 0.6rem 1rem;
}
p {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
  color: #fff;
  background-color: #009688;
  padding: 0.8em 0;
}
button:hover {
  background: #0db1a0;
}
