@import url('https://fonts.googleapis.com/css?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    --body-bg-color: #0e1b31;
    --card-bg-color: #fff;
    --modal-bg-color: #fff;


    --container-color: #171b3c;
    --main-color: #647bff;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--body-bg-color);
}

.select-box img{
    font-size: 64px;
}


/* Header */

.container{
    /* max-width: 960px; */
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #3366cc;
    margin-bottom: 4rem;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    transition: .6s ease;
}

.logo{
    font-size: 1.2rem;
    color: var(--modal-bg-color);
    font-style: normal;
}

.wrapper{
    width: 420px;
    padding: 30px;
    border-radius: 7px;
    background: var(--modal-bg-color);
}

.wrapper h2{
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

.wrapper form{
    margin: 40px 0 20px 0;
}

form :where(input, select, button){
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
}
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;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.drop-list .select-box{
    display: flex;
    height: 40px;
    width: 115px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    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{
    cursor: pointer;
    font-size: 22px;
    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: #3366cc;
}

form button:hover{
    background: var(--body-bg-color);
}


@media (max-width: 1024px){
    .logo {
        padding-left: 2em;
        font-size: 1.2em;
    }
}

@media (max-width: 892px){
    .logo {
        padding-left: 2em;
        font-size: 1.2em;
    }
}

@media (max-width: 775px){
    .logo {
        padding-left: 2em;
        font-size: 1.2em;
    }
}

@media (max-width: 635px){
    .logo {
        padding-left: 2em;
        font-size: 1.1em;
    }
}

@media (max-width: 450px){
    .wrapper {
        width: 320px;
        padding: 20px;
        border-radius: 7px;
        background: var(--modal-bg-color);
    }
    .logo {
        padding-left: 2em;
        font-size: 1em;
    }
    
}

@media (max-width: 325px){
    .wrapper {
        width: 300px;
        padding: 18px;
        border-radius: 7px;
        background: var(--modal-bg-color);
    }

    .logo {
        padding-left: 2em;
        font-size: 1em;
    }
}


