/* ============================================
   JOB BOARD - BOLSA DE TRABAJO
   ============================================ */

/* Form Card */
.job-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* CV Upload Box */
.cv-upload-box {
    position: relative;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.cv-upload-box:hover {
    border-color: #042D62;
    background-color: #f0f5ff;
}

.cv-upload-box input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.cv-upload-label {
    cursor: pointer;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cv-upload-label i {
    font-size: 2.5rem;
    color: #042D62;
}

.cv-upload-label span {
    font-size: 1rem;
    color: #606060;
    font-weight: 500;
}

.cv-file-name {
    display: none;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #042D62;
    font-weight: 600;
}

/* Submit Button */
.btn-submit {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #042D62;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 45, 98, 0.3);
}

/* Terms Text */
.form-check-label.small {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Invalid Feedback */
.invalid-feedback {
    font-size: 0.85rem;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .job-form-card {
        padding: 24px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .job-application-form .form-control,
    .job-application-form .form-select {
        padding: 12px 16px;
    }
}