.rps-payment-form {
    max-width: 400px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.rps-form-group {
    margin-bottom: 15px;
}

.rps-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.rps-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.rps-amount-display {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: #e7f3ff;
    border-radius: 4px;
}

.rps-payment-button {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.rps-payment-button:hover {
    background: #005a87;
}

.rps-payment-logo {
    text-align: center;
    margin-top: 15px;
}