/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 10px;
  background: linear-gradient(to right, #313C5C, #3A2F56);
}
::selection{
  color: #fff;
  background: #7760ad98;
}
.wrapper{
  width: 355px;
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  background: #27262C;
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
}
.wrapper header{
 background: linear-gradient(to right, #6075b4, #755eac);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 font-size: 40px;
 font-weight: bold;
 text-align: center;
  
}
.wrapper form{
  margin: 40px 0 20px 0;
}
form :where(input, select, button){
  color: #fff;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px;
  background: linear-gradient(#81BCFF);
}

.amount {
  border: none;
}

form p{
  font-size: 18px;
  margin-bottom: 5px;
}
form input{
  background: #372F47;
  height: 50px;
  font-size: 17px;
  padding: 0 15px;
  border: none;
  border: 1px solid none;
}
form input:focus{
  background: #372F47;
  padding: 0 14px;
  border: 2px solid #616BA8;
}
form .drop-list{
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}
.drop-list .select-box{
  display: flex;
  width: 115px;
  height: 40px;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
  
}
.select-box img{
  max-width: 21px;
}
.select-box select{
  color: #fff;
  width: auto;
  font-size: 16px;
  background: linear-gradient(to right, #6075b4, #755eac);
  background-color: #27262C;
  margin: 0 -5px 0 5px;
}
.select-box select::-webkit-scrollbar{
  width: 8px;
}
.select-box select::-webkit-scrollbar-track{
  background: #27262C;
}
.select-box select::-webkit-scrollbar-thumb{
  background: #755eac;
  border-radius: 8px;
  border-right: 2px solid #6075b4;
}
.drop-list .icon{
  cursor: pointer;
  margin-top: 30px;
  font-size: 22px;
}
form .exchange-rate{
  font-size: 15px;
  margin: 20px 0 30px;
  text-align: center;
  background-color: #6075b4;
  padding: 8px;
  border-radius: 4px;
}
form button{
  height: 52px;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  background: linear-gradient(to right, #6075b4, #755eac);
}
form button:hover{
  background: linear-gradient(to right, #5b6fa7, #7760ad);
}


