.bonus-login-card {
    max-width: 60%;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: -5%;
}

.bonus-login-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.bonus-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.bonus-form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.bonus-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.bonus-btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #006C33;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bonus-btn-submit:hover {
    background-color: #A2D729;
}

#bonus-login-message {
    margin-top: 15px;
    font-size: 14px;
    color: red;
    text-align: center;
}

/* hidden buttons */

.confirm-buttons {
    display: flex;
    justify-content: space-between; 
    gap: 10px; 
    margin-top: 15px;
}

.bonus-btn-yes,
.bonus-btn-no {
    flex: 1; 
    padding: 12px;
    background-color: #006C33;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.bonus-btn-no {
    background-color: #FF3B30; 
}

.bonus-btn-yes:hover {
    background-color: #005222;
}

.bonus-btn-no:hover {
    background-color: #CC2A24;
}



/* success page */

.bonus-success-card {
    max-width: 80%;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.bonus-success-logo img {
    max-width: 10%;
    margin-bottom: 5%;

}

.bonus-success-card h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.bonus-success-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.bonus-success-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #006C33;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.bonus-success-btn:hover {
    background-color: #A2D729;
}


/* balance section */ 

.bonus-balance-card {
    max-width: 10%;
    max-height: 5%;
    text-align: center;
    background: #fff;
    padding: 0.5% , 0,5% , 0,5% , 0%;
    border-radius: 4%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    margin: 5% auto;
    margin-top: -2%;
}

.bonus-balance-logo img {
    max-width: 25%;
    margin-left: -75%;
   
}

#balance-result {
    font-size: 18px;
    margin-top: 0%;
    font-weight: bold;
    color: #006C33;
}

#member-result {
    font-size: 18px;
    margin-top: 0%;
    font-weight: bold;
    color: #006C33;
    margin-left: -25%;
}

.bonus-my-account-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.bonus-success-logo img {
    max-width: 100px;
    height: auto;
}

.bonus-my-account-card > div {
    text-align: center;
}

/* My-Account */

.bonus-my-account-card {
    max-width: 80%;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}


.bonus-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 10px center;
    background-size: 10px 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.bonus-form-group select:focus {
    border-color: #006C33;
    outline: none;
}