.wpl-form-wrapper {
    margin: 0 auto;
}
.wpl-form-title {
    margin-bottom: 15px;
}
.wpl-form-description {
    margin-bottom: 25px;
    font-size: 0.95em;
    color: #666;
}
.wpl-form-field {
    position: relative;
}
.wpl-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.wpl-form-input,
.wpl-form-textarea,
.wpl-form-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #ddd;
    transition: border-color .3s;
}
.wpl-form-input:focus,
.wpl-form-textarea:focus,
.wpl-form-select:focus {
    outline: none;
    border-color: #007cba;
}
.wpl-form-submit {
    margin-top: 20px;
}
.wpl-form-submit-btn {
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: background-color .3s, color .3s;
}
.wpl-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}
.wpl-form-message.success {
    background: #d4edda;
    color: #155724;
    width: 100%;
  text-align: center;
}
.wpl-form-message.error {
    background: #f8d7da;
    color: #721c24;
    width: 100%;
  text-align: center;
}
.required { color: #d63638; }


/* ---- Validation Errors ---- */
.wpl-form-field {
    position: relative;
}
.wpl-error {
    border-color: #d63638 !important;
    box-shadow: 0 0 0 1px #d63638 inset;
}
.wpl-field-error {
    display: block;
    margin-top: 4px;
    font-size: 0.85em;
    color: #d63638;
    font-weight: 500;
}

/* Focus on error */
.wpl-form-input:focus.wpl-error,
.wpl-form-textarea:focus.wpl-error,
.wpl-form-select:focus.wpl-error {
    outline: none;
    border-color: #d63638;
    box-shadow: 0 0 0 2px rgba(214,54,56,.2);
}

/* Required asterisk */
.wpl-form-label .required {
    color: #d63638;
    margin-left: 2px;
}