<?php

declare(strict_types=1);

/** Shared sollicitatieformulier styles for all werken-bij templates. */

.jp-apply-form {
    margin-top: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
    .jp-apply-form {
        padding: 2rem;
    }
}

.jp-apply-form-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a0a;
}

.jp-apply-form-lead {
    margin: 0 0 1.5rem;
    color: #383838;
    line-height: 1.6;
}

.jp-apply-form-success {
    margin-bottom: 1.25rem;
    border-radius: 0.375rem;
    border: 1px solid #86efac;
    background: #f0fdf4;
    padding: 0.875rem 1rem;
    color: #166534;
    font-size: 0.9375rem;
}

.jp-apply-form-error {
    margin-bottom: 1.25rem;
    border-radius: 0.375rem;
    border: 1px solid #fecaca;
    background: #fef2f2;
    padding: 0.875rem 1rem;
    color: #991b1b;
    font-size: 0.9375rem;
}

.jp-apply-form-grid {
    display: grid;
    gap: 1rem;
}

.jp-apply-form-field label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a0a0a;
}

.jp-apply-form-field input[type="text"],
.jp-apply-form-field input[type="email"],
.jp-apply-form-field input[type="tel"],
.jp-apply-form-field input[type="file"],
.jp-apply-form-field select,
.jp-apply-form-field textarea {
    display: block;
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    background: #fff;
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
    color: #111827;
}

.jp-apply-form-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.jp-apply-form-field input:focus,
.jp-apply-form-field select:focus,
.jp-apply-form-field textarea:focus {
    outline: 2px solid #056b38;
    outline-offset: 1px;
    border-color: #056b38;
}

.jp-apply-form-field-error {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #b91c1c;
}

.jp-apply-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.jp-apply-form-actions {
    margin-top: 1.25rem;
}

.jp-apply-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background-color: #056b38;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.jp-apply-form-submit:hover {
    background-color: #005c22;
}

.template-gemeente .jp-apply-form-submit {
    background-color: #007bc7;
}

.template-gemeente .jp-apply-form-submit:hover {
    background-color: #006ba8;
}

.template-gemeente .jp-apply-form-field input:focus,
.template-gemeente .jp-apply-form-field select:focus,
.template-gemeente .jp-apply-form-field textarea:focus {
    outline-color: #007bc7;
    border-color: #007bc7;
}
