  body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; }
    .donate-panel { max-width: 400px; margin: 30px auto; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); background: white; }
    h2 { text-align: center; color: #333; }
    .form-control {
        width: 100%; /* Make sure both input and select elements have the same width */
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #ddd;
        box-sizing: border-box; /* This makes sure padding is included in the width */
    }
    .btn-donate { 
        width: 100%; 
        background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%); 
        color: white; 
        padding: 10px; 
        border: none; 
        border-radius: 5px; 
        cursor: pointer; 
    }
    .btn-donate:hover { opacity: 0.9; }
    .agreement { font-size: 0.8em; text-align: center; margin-top: 20px; color: #666; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
		display: inline-block; /* This will align the label next to the checkbox */
		margin-left: 5px; /* This gives some space between the checkbox and the text */