body {
    font-family: Arial, sans-serif;
    /* background-color: #733c92; */
}


.icontainer {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    position: relative;
    border-radius: 8px;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.price {
    font-size: 18px;
    color: #000;
}

h2 {
    text-align: center;
    font-size: 18px;
    color: #000;
}

.currency-selector {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-down {
    margin-right: 10px;
    font-size: 18px;
    color: #000;
}

select {
    font-size: 16px;
    padding: 5px;
    margin-top: 10px;
}

.input-boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.input-box {
    width: 42%;
}

.input-box label {
    font-size: 14px;
    color: #000;
}

.input-box input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
}

.transaction-info {
    margin-top: 20px;
    text-align: center;
}

#address {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}

.button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #fab350;
    border: none;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}

.button:hover {
    background-color: #733c92;
}

.error {
    color: #ea5a60;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-size: small;
    font-weight: thin;
    
}

