@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&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'poppins';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-width: 45vw;
    background-color: #63B0CD;
}

.container {
    min-height: 45vh;
    min-width: 25vw;
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: white;
}

form input {
    width: 100%;
    height: 2.5rem;
    padding: 5px;
    border-radius: 0.5rem;
    background-color: #39393A;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.amount {
    margin-top: 1rem;
}

.amount input {
    border: 2px solid grey;
    background-color: white;
    color: black;
    cursor: text;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown i {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.select_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: 2px solid grey;
    border-radius: 0.5rem;
    cursor: pointer;
}

.select_container select {
    border: none;
    padding-right: 5px;
    cursor: pointer;
}

.msg {
    min-height: 2rem;
    padding: 5px;
    display: flex;
    align-items: center;
}