
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #675AFE;
}

.wrapper{
    width: 370px;
    background: white;
    padding: 30px;
    border-radius: 9px;
}

.wrapper header{
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

.wrapper form{
    margin: 40px 0px 20px 0px;
}

form :where(input, select, button){
    width: 100%;
    outline: none;
    border: none;
}

form p{
    font-size: 18px;
    margin-bottom: 5px;

}

form input{
    border: 1px solid #999;
    height: 50px;
    font-size: 17px;
    padding: 0 15px;
}

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;
    border-radius: 5px;
    width: 115px;
    height: 45px;
    background: white;
    align-items: center;
    justify-content: center;
    border:1px solid #999 ;
}

.select-box select{
    width: auto;
    font-size: 16px;
    margin:0 -5px 0 5px;
}

.select-box select::-webkit-scrollbar{
    width:8px;
}

.select-box select::-webkit-scrollbar-track{
    background: #fff;
}

.select-box select::-webkit-scrollbar-thumb{
    background: #888;
    border-radius: 8px;
    border-right: 2px solid #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;
    font-size: 17px;
    cursor: pointer;
    background: #675AFE;
}