.jp-apply-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: auto;
}

.jp-apply-form h2,
.jp-apply-form h3 {
    margin-bottom: 15px;
    color: #333;
}

.jp-apply-form input,
.jp-apply-form select,
.jp-apply-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fafafa;
}

.jp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.jp-grid .wide {
    grid-column: span 2;
}

.jp-btn {
    background: #6a0dad !important;
    /* morado corporativo */
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.jp-btn:hover {
    background: #530a9c !important;
}

.jp-success {
    padding: 12px;
    background: #d8ffd8;
    border-left: 4px solid #2e8b2e;
    margin-bottom: 20px;
}