/* Basic styling for the form */
.wffcpt-form-wrapper {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
}

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

.wffcpt-form-wrapper input[type="text"],
.wffcpt-form-wrapper input[type="date"],
.wffcpt-form-wrapper select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.wffcpt-form-wrapper input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.wffcpt-form-wrapper input[type="submit"]:hover {
    background-color: #005177;
}

#wffcpt-form-messages {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#wffcpt-form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#wffcpt-form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}




.wffcpt-input-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.wffcpt-input-wrapper i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.wffcpt-input-wrapper input[type="text"],
.wffcpt-input-wrapper input[type="date"],
.wffcpt-input-wrapper select {
    padding-left: 35px; /* Make space for the icon */
}

.wffcpt-validation-description {
    font-size: 0.85em;
    color: #666;
    margin-top: -5px;
    margin-bottom: 10px;
    display: block;
}


