
@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;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(124, 224, 124);
    font-family: "Poppins", sans-serif;
}

.container{
    background-color: white;
    min-height: 50vh;
    width: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem 2rem 2rem;
    border-radius: 1.5rem;
}

h2{
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
}

.amount{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.amount input{
    width: 100%;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid gray;
    margin-bottom: 10px;
}

.dropdown{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;

}

.dropdown i{
    margin-top: 10px;
    font-size: 16px;
}

.dropdown img{
    width: 2rem;
}

.select-cont{
    display: flex;
    border: 1px solid gray;
    border-radius: 4px;
    padding: 0 5px;
}

select{
    border: none;
}

.logo img{
    width: 200px;
    height: 200px;
}

.message{
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.btn{
    width: 100%;
    border: 1px solid gray;
    background-color: rgb(30, 25, 25);
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
}

.btn:hover{
    /* opacity: 0.8; */
    transform: scale(1.05);
}

@media (max-width:320px){
    .container{
        width: 100%
    }
}

@media (max-width:250px){
    
    .dropdown{
        flex-direction: column;
    }
}
