* {
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(35, 50, 16);
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    background-color: rgb(255, 255, 255);
    padding: 30px 50px;
    /* height:55vh;
    width:17vw; */
    /* width:30vw; */
    border-radius: 8px;
}

.amount p {
    font-size: 18px;
    padding: 15px 0;
}

form {
    margin: 15px 0;
}

form input {
    width: 100%;
    height: 40px;
    font-size: 22px;
    border: 1 px solid gainsboro;
    border-radius: 7px;

    padding-left: 10px;


}

.dropdown {
    margin: 40px 0;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.select-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 6px;
    /* background-color: aquamarine; */
    padding: 0 9px;
    border: 1px solid gainsboro;
    border-radius: 8px;

}

.select-container select {
    border: none;
}

.from p,
.to p {
    font-size: 25px;
    font-weight: bold;
}

.symbol {

    margin: 0 20px;
    margin-top: 30px;
}

.select-container img {
    width: 35px;

}

.msg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.msg p {
    font-size: 18px;
}

.msg button {
    font-size: 19px;
    padding: 7px 5px;
    width: 100%;
    background-color: rgb(78, 10, 142);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 7px;

}

.msg button hover {
    background-color:rgb(61, 5, 114);
    cursor: pointer;

}