.rp-form {
    background: linear-gradient(135deg, #d6f0d6, #e9f7e9);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
    color: #1b4d1b;
    box-shadow: 0 0 10px rgba(27,77,27,0.2);
}

.rp-form h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5em;
}

.rp-form label {
    font-weight: 600;
}

.rp-form input[type="text"],
.rp-form input[type="date"],
.rp-form input[type="number"],
.rp-form select,
.rp-form input[type="file"] {
    width: 100%;
    padding: 7px 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #9cc49c;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1em;
}

.rp-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.rp-form button:hover {
    background-color: #3a7d3a;
}

.rp-success {
    color: #2e7d32;
    background
