body, h1, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.container-wallet {
    background: #fcfbfc;
    height: 100vh;
}
.header {
    background: url('../images/background-login.png');
    background-size: 100% auto;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    text-align: center;
    width: 100%;
    font-weight: 700;
}

.wallet-balance {
    background-image: linear-gradient(180deg,#ff3e31,#00ce8b 65.29%,#ffe381);
    padding: 20px;
    margin: 12px;
    color: white;
    border-radius: 12px;
    text-align: center;
}

.amount {
    font-size: 2em;
}

.transactions {
    background-color: #fff;
    padding: 20px;
}

.transaction {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}


.withdraw-button {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.withdraw{
    font-weight: 600;
    border-radius: 4px; 
    color: black;
    width: 100%;
    background: #fff;
    margin:0 12px;
    box-shadow: 0 0.125rem 0.875rem rgba(53,73,93,.07);
    display: flex;
    align-items: center;
}

.transactions {
    font-weight: 600;
    border-radius: 4px; 
    color: black;
    background: #fff;
    margin:0 12px;
    box-shadow: 0 0.125rem 0.875rem rgba(53,73,93,.07);
    padding: 4px 12px !important;
}

.transactions span {
    font-size: 13px;
}

.bonus {
    color: #1423c6!important;
}

.button-amount{
    color: red;
    font-size: 13px;
}

.avlb-amount {
    color: #999;
    font-weight: 700;
}

.creditCard {
    margin: 12px;
    background: #fff;
    border-radius: 0.3125rem;
    box-shadow: 0 0.0625rem 1.25rem rgba(0,0,0,.06);
    margin-top: 0.625rem;
    padding: 0.5rem 1rem;
    overflow: hidden;
}
.addCard {
    color: #d93728!important;
}

.radio-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.radio-group label {
    flex-grow: 1;
    text-align: left;
}

.radio-group input[type="radio"] {
    flex-grow: 0;
}

.send{
    font-weight: 700;
    border-radius: 24px; 
    width: 100vw;
    color: #fff;
    margin: 0 12px;
    background: #00ce8b;
}

.auth-container {
    background: #fff;
    border-radius: 12px;
}
.login-form {
    padding: 15px;
}

.input-group {
    margin-bottom: 15px;
}
.input-group p {
    color: #333;
    margin: 0px;
    font-weight: 700;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 8px;
}
