#fp-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#fp-form h2 {
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #4a7830 !important;
    text-align: center;
    font-size: 23px;
    text-transform: uppercase;
}

#fp-form fieldset {
    border: none;
    margin-bottom: 25px;
}

#fp-form legend {
    font-family: 'Ubuntu', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    color: #505862 !important;
    font-weight: bold;
    padding: 0px;
    margin: 0px;
}

#fp-form label {
    font-family: 'Ubuntu', Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #505862 !important;
    margin-bottom: 0px;
    margin-top: 0px;
    font-weight: normal;
}

#fp-form .form-check-input[type="checkbox"] {
    background-color: transparent !important;
}

#fp-form .form-check-input:checked {
    background-color: #2e9935 !important;
}

#fp-form .form-check-label{
    margin-left: 10px;
}

#fp-form input[type="text"],
#fp-form input[type="number"],
#fp-form input[type="tel"],
#fp-form input[type="email"],
#fp-form textarea {
    width: 100%;
    padding: 6px 10px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#fp-form textarea {
    min-height: 60px;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.file-upload input[type="file"] {
    padding: 5px;
}

.note {
    font-size: 12px;
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.checkbox-group label {
    margin: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-left: 10px;
    transform: scale(1.2);
}

#fp-form button[type="submit"] {
    display: block;
    margin: 30px auto 0;
    color: #505862;
    background-color: transparent;
    border: 1px solid #505862;
    border-radius: 25px;
    padding: 5px 25px;
    font-weight: bold;
    cursor: pointer;
}

.pdf-icon {
    width: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

.fp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fp-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.fp-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fp-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}
