/* JoryForms Frontend Styles - Super ligero y rápido */
.joryform-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.joryform-field {
    margin-bottom: 20px;
}

.joryform-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.joryform-required {
    color: #d63638;
    margin-left: 3px;
}

.joryform-field input[type="text"],
.joryform-field input[type="email"],
.joryform-field input[type="tel"],
.joryform-field input[type="number"],
.joryform-field input[type="date"],
.joryform-field input[type="url"],
.joryform-field textarea,
.joryform-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color .2s;
    box-sizing: border-box;
}

.joryform-field input:focus,
.joryform-field textarea:focus,
.joryform-field select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.joryform-field textarea {
    min-height: 120px;
    resize: vertical;
}

.joryform-checkbox-label,
.joryform-radio-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: normal;
    cursor: pointer;
}

.joryform-checkbox-label input,
.joryform-radio-label input {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.joryform-submit-wrapper {
    margin-top: 25px;
}

.joryform-submit {
    width: 100%;
    padding: 14px 24px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.joryform-submit:hover {
    background: #135e96;
}

.joryform-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.joryform-message {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.joryform-message.show {
    display: block;
}

.joryform-message.success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.joryform-message.error {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

