/* contact.css – styles specific to the contact page */

.job-ticket {
    background-color: #F9F7F1;
    /* Manila/Cream */
    border: 2px dashed #333;
    padding: var(--space-xl);
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
    max-width: 600px;
    margin: 0 auto;
}

.job-ticket::before {
    content: 'JOB TICKET #9482';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #333;
    color: #fff;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(1deg);
}

.job-ticket-label {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 4px;
    display: block;
}

.job-ticket-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px dotted #999;
    padding: 8px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: var(--space-lg);
    transition: border-color 0.3s;
}

.job-ticket-input:focus {
    outline: none;
    border-bottom-color: #000;
    background-color: rgba(0, 0, 0, 0.02);
}

.job-ticket-btn {
    width: 100%;
    border-radius: 0;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}